:root {
  --bg: #fbfaf7;
  --bg-soft: #f4efe7;
  --panel: #ffffff;
  --panel-warm: #f8f3eb;
  --line: rgba(40, 33, 25, .12);
  --line-strong: rgba(40, 33, 25, .22);
  --text: #231f1a;
  --muted: #746e65;
  --accent: #c68a48;
  --accent-dark: #9d6530;
  --shadow: 0 18px 60px rgba(84, 63, 39, .10);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --container: min(1280px, calc(100vw - 8vw));
  --header-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--text); background: var(--bg); font-family: var(--sans); font-size: 15px; line-height: 1.65; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { color: #fff; background: var(--accent); }
.container { width: var(--container); margin-inline: auto; }
.section { padding: clamp(80px, 9vw, 132px) 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 9999; transform: translateY(-140%); padding: 10px 14px; color: #fff; background: var(--accent-dark); }
.skip-link:focus { transform: translateY(0); }

.page-loader { position: fixed; inset: 0; z-index: 9998; display: grid; place-items: center; background: var(--bg); transition: opacity .55s ease, visibility .55s; }
.page-loader span { position: relative; width: 120px; height: 2px; overflow: hidden; background: rgba(35,31,26,.12); }
.page-loader span::after { content: ""; position: absolute; inset: 0; background: var(--accent); transform: translateX(-100%); animation: load 1.1s ease infinite; }
body.loaded .page-loader { opacity: 0; visibility: hidden; }
@keyframes load { to { transform: translateX(100%); } }

.site-header { position: fixed; inset: 0 0 auto; z-index: 1000; height: var(--header-h); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 4vw; border-bottom: 1px solid rgba(35,31,26,.08); background: rgba(251,250,247,.86); backdrop-filter: blur(16px); transition: box-shadow .3s, background .3s; }
.site-header.scrolled { background: rgba(251,250,247,.96); box-shadow: 0 8px 30px rgba(52,41,28,.07); }
.brand { display: inline-flex; align-items: center; gap: 12px; justify-self: start; }
.brand img { width: 38px; height: 38px; }
.brand span { display: grid; line-height: 1; }
.brand strong { font-family: var(--serif); font-size: 23px; font-weight: 600; }
.brand small { margin-top: 7px; color: var(--muted); font-size: 8px; letter-spacing: .28em; }
.main-nav { display: flex; align-items: center; gap: clamp(22px, 2.8vw, 44px); }
.main-nav a { position: relative; color: #4d473f; font-size: 10px; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 1px; background: var(--accent); transition: right .3s; }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.header-cta { justify-self: end; display: inline-flex; align-items: center; gap: 17px; padding: 13px 22px; color: #fff; background: var(--accent); font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; transition: transform .25s, background .25s; }
.header-cta:hover { transform: translateY(-2px); background: var(--accent-dark); }
.menu-toggle { display: none; }

.hero { position: relative; min-height: 760px; padding-top: var(--header-h); overflow: hidden; background: linear-gradient(90deg, #fbfaf7 0%, #fbfaf7 35%, rgba(251,250,247,.75) 51%, rgba(251,250,247,0) 70%); }
.hero-media { position: absolute; top: var(--header-h); right: 0; bottom: 0; width: 74%; overflow: hidden; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #fbfaf7 0%, rgba(251,250,247,.86) 12%, rgba(251,250,247,.20) 42%, rgba(251,250,247,0) 66%), linear-gradient(0deg, rgba(35,31,26,.08), transparent 55%); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.035); animation: heroZoom 11s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-content { position: relative; z-index: 2; min-height: calc(760px - var(--header-h)); display: flex; align-items: center; }
.hero-copy { width: min(560px, 54vw); padding: 80px 0; }
.eyebrow { display: flex; align-items: center; gap: 13px; margin: 0 0 20px; color: var(--accent); font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; }
.hero h1, .display { margin: 0; font-family: var(--serif); font-weight: 500; letter-spacing: -.025em; }
.hero h1 { font-size: clamp(72px, 7.4vw, 116px); line-height: .84; }
.hero h1 em { color: var(--accent); font-weight: 500; }
.hero-lead { max-width: 460px; margin: 32px 0 0; color: #5d574f; font-size: 15px; }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; }
.btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 22px; padding: 0 22px; border: 1px solid var(--line-strong); background: transparent; color: var(--text); cursor: pointer; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: transform .25s, border-color .25s, background .25s, color .25s, box-shadow .25s; }
.btn:hover { transform: translateY(-2px); border-color: var(--accent); box-shadow: 0 10px 24px rgba(157,101,48,.13); }
.btn-primary { border-color: var(--accent); color: #fff; background: var(--accent); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost { background: rgba(255,255,255,.56); backdrop-filter: blur(8px); }
.scroll-cue { position: absolute; right: 4vw; bottom: 28px; z-index: 3; display: flex; align-items: center; gap: 12px; color: #fff; font-size: 9px; letter-spacing: .16em; text-transform: uppercase; text-shadow: 0 1px 10px rgba(0,0,0,.25); }
.scroll-cue span { width: 44px; height: 1px; background: rgba(255,255,255,.55); overflow: hidden; }
.scroll-cue span::after { content: ""; display: block; width: 18px; height: 1px; background: #fff; animation: scrollLine 2s ease infinite; }
@keyframes scrollLine { from { transform: translateX(-24px); } to { transform: translateX(52px); } }

.about-strip { background: var(--panel); }
.about-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 8vw; align-items: end; }
.display { font-size: clamp(48px, 5vw, 76px); line-height: .98; }
.about-copy { color: var(--muted); font-size: 16px; }
.about-copy p { margin: 0; }
.about-copy p + p { margin-top: 22px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 64px; }
.stat { padding-top: 22px; border-top: 1px solid var(--line); }
.stat strong { display: block; color: var(--accent); font-family: var(--serif); font-size: clamp(44px, 4.2vw, 62px); font-weight: 500; line-height: 1; }
.stat span { display: block; margin-top: 8px; color: var(--muted); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }

.section-heading { display: grid; grid-template-columns: 1fr minmax(280px, 390px); align-items: end; gap: 50px; margin-bottom: 44px; }
.section-note { margin: 0; color: var(--muted); }
.services { background: var(--bg); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); box-shadow: 0 8px 30px rgba(64,48,31,.04); transition: transform .35s, box-shadow .35s, border-color .35s; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(198,138,72,.40); box-shadow: var(--shadow); }
.service-card-media { height: 250px; overflow: hidden; }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .75s cubic-bezier(.2,.75,.2,1); }
.service-card:hover img { transform: scale(1.05); }
.service-card-content { position: relative; min-height: 118px; padding: 20px 58px 20px 22px; }
.service-card-index { color: var(--accent); font-size: 9px; letter-spacing: .14em; }
.service-card h3 { margin: 3px 0 6px; font-family: var(--serif); font-size: 28px; font-weight: 500; line-height: 1; }
.service-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.service-card .arrow { position: absolute; right: 20px; bottom: 23px; z-index: 2; color: var(--accent); font-size: 18px; }

.process { background: var(--bg-soft); }
.process-shell { position: relative; }
.process-progress-line { position: absolute; left: 0; right: 0; top: 31px; height: 1px; background: rgba(198,138,72,.25); overflow: hidden; }
.process-progress-line i { display: block; width: 0; height: 100%; background: var(--accent); transition: width .7s cubic-bezier(.2,.8,.2,1); }
.process-cards { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.process-tab { display: grid; grid-template-rows: 62px 170px auto; gap: 13px; padding: 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
.process-step-head { display: flex; align-items: center; }
.process-step-number { width: 62px; height: 62px; display: grid; place-items: center; border: 1px solid rgba(198,138,72,.45); border-radius: 50%; color: #635a50; background: var(--bg-soft); font-family: var(--serif); font-size: 20px; transition: background .3s, color .3s, transform .3s; }
.process-tab.active .process-step-number { color: #fff; background: var(--accent); transform: scale(1.05); }
.process-thumb { overflow: hidden; border-radius: 8px; box-shadow: 0 12px 30px rgba(86,60,35,.08); }
.process-thumb img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.88); transition: transform .6s, filter .4s; }
.process-tab.active .process-thumb img, .process-tab:hover .process-thumb img { transform: scale(1.04); filter: saturate(1.08); }
.process-card-copy h3 { margin: 0 0 6px; font-family: var(--serif); font-size: 24px; font-weight: 500; line-height: 1.05; }
.process-card-copy p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.process-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 34px; }
.process-controls button { width: 42px; height: 42px; border: 1px solid var(--line-strong); border-radius: 50%; background: rgba(255,255,255,.65); cursor: pointer; transition: border-color .25s, color .25s, transform .25s; }
.process-controls button:hover { color: var(--accent-dark); border-color: var(--accent); transform: translateY(-2px); }
.process-controls p { min-width: 220px; margin: 0; color: var(--muted); text-align: center; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }

.projects { background: var(--panel); }
.projects-heading { align-items: center; }
.project-filters { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px; }
.project-filters button { padding: 9px 12px; border: 1px solid var(--line); border-radius: 99px; background: transparent; color: var(--muted); cursor: pointer; font-size: 9px; letter-spacing: .06em; text-transform: uppercase; transition: .25s; }
.project-filters button:hover, .project-filters button.active { color: #fff; border-color: var(--accent); background: var(--accent); }
.project-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.project-card { overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); box-shadow: 0 8px 24px rgba(64,48,31,.04); transition: transform .35s, box-shadow .35s; }
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.project-card-media { height: 255px; overflow: hidden; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.75,.2,1); }
.project-card:hover img { transform: scale(1.05); }
.project-card-content { padding: 18px 18px 20px; }
.project-card small { color: var(--accent); font-size: 8px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.project-card h3 { margin: 5px 0 3px; font-family: var(--serif); font-size: 27px; font-weight: 500; line-height: 1; }
.project-card p { margin: 0; color: var(--muted); font-size: 11px; }

.values { background: var(--bg); }
.values-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 7vw; align-items: center; }
.values-visual { position: relative; min-height: 610px; overflow: hidden; border-radius: 10px; box-shadow: var(--shadow); }
.values-visual::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.5); border-radius: inherit; pointer-events: none; }
.values-visual img { width: 100%; height: 100%; object-fit: cover; }
.value-list { margin-top: 38px; }
.value-list article { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 21px 0; border-top: 1px solid var(--line); }
.value-list article > span { color: var(--accent); font-family: var(--serif); font-size: 20px; font-style: italic; }
.value-list h3 { margin: 0; font-family: var(--serif); font-size: 26px; font-weight: 500; }
.value-list p { margin: 4px 0 0; color: var(--muted); }

.contact { background: var(--panel-warm); }
.contact-heading { margin-bottom: 44px; }
.contact-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: 20px; align-items: stretch; }
.contact-card, .quote-form { border: 1px solid var(--line); border-radius: 9px; background: rgba(255,255,255,.78); box-shadow: 0 12px 40px rgba(76,56,34,.06); }
.contact-card { padding: 28px; }
.contact-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 0 0 24px; }
.contact-list div { padding-top: 14px; border-top: 1px solid var(--line); }
.contact-list dt { color: var(--accent); font-size: 8px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.contact-list dd { margin: 6px 0 0; color: #4e483f; font-size: 12px; }
.map-card { position: relative; height: 390px; overflow: hidden; border-radius: 7px; }
.map-card iframe { width: 100%; height: 100%; border: 0; filter: saturate(.72) contrast(.93); }
.map-link { position: absolute; left: 16px; bottom: 16px; padding: 11px 15px; border: 1px solid rgba(35,31,26,.12); border-radius: 4px; color: var(--accent-dark); background: rgba(255,255,255,.94); box-shadow: 0 8px 24px rgba(0,0,0,.10); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.quote-form { display: grid; gap: 20px; padding: clamp(26px, 4vw, 48px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.quote-form label { display: grid; gap: 8px; color: #615a52; font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; border: 0; border-bottom: 1px solid var(--line-strong); border-radius: 0; outline: 0; padding: 12px 0; color: var(--text); background: transparent; text-transform: none; letter-spacing: 0; }
.quote-form textarea { resize: vertical; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--accent); }
.consent { grid-template-columns: 20px 1fr !important; align-items: start; color: var(--muted) !important; font-weight: 400 !important; letter-spacing: 0 !important; text-transform: none !important; }
.consent input { width: 16px; height: 16px; accent-color: var(--accent); }
.quote-form .btn { justify-self: start; }
.form-status { min-height: 22px; margin: 0; color: var(--accent-dark); }

.site-footer { padding: 66px 0 22px; border-top: 1px solid var(--line); background: var(--panel); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .9fr .9fr; gap: 5vw; padding-bottom: 54px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p, .footer-grid a, .footer-grid span { color: var(--muted); font-size: 12px; }
.footer-grid h3 { margin: 0 0 10px; color: var(--accent); font-size: 8px; letter-spacing: .18em; text-transform: uppercase; }
.footer-grid a:hover { color: var(--accent-dark); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 19px; border-top: 1px solid var(--line); color: #8a837a; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.toast { position: fixed; right: 24px; bottom: 24px; z-index: 1200; max-width: 360px; padding: 14px 18px; color: #fff; background: var(--accent-dark); box-shadow: 0 12px 36px rgba(69,43,22,.22); transform: translateY(30px); opacity: 0; pointer-events: none; transition: .3s; }
.toast.show { transform: translateY(0); opacity: 1; }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.75,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }

@media (max-width: 1120px) {
  :root { --container: min(1280px, calc(100vw - 48px)); }
  .site-header { grid-template-columns: 1fr auto; padding-inline: 24px; }
  .header-cta { display: none; }
  .menu-toggle { position: relative; z-index: 2; display: grid; gap: 7px; justify-self: end; width: 42px; height: 42px; place-content: center; border: 1px solid var(--line); background: rgba(255,255,255,.9); cursor: pointer; }
  .menu-toggle span { width: 20px; height: 1px; background: var(--text); transition: transform .3s, opacity .3s; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .main-nav { position: absolute; top: 100%; left: 0; right: 0; width: 100%; height: calc(100vh - var(--header-h)); height: calc(100dvh - var(--header-h)); display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 0; padding: clamp(42px, 8vh, 78px) max(24px, 8vw) 42px; overflow-y: auto; overscroll-behavior: contain; background: #fbfaf7; border-top: 1px solid var(--line); box-shadow: 0 24px 60px rgba(52,41,28,.12); opacity: 0; visibility: hidden; pointer-events: none; transform: translate3d(100%,0,0); transition: transform .42s cubic-bezier(.2,.8,.2,1), opacity .28s ease, visibility 0s linear .42s; }
  .main-nav.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translate3d(0,0,0); transition-delay: 0s; }
  .main-nav a { width: 100%; padding: 15px 0 17px; border-bottom: 1px solid var(--line); color: var(--text); font-family: var(--serif); font-size: clamp(40px, 5.2vw, 58px); font-weight: 500; line-height: .95; letter-spacing: -.02em; text-transform: none; }
  .main-nav a:first-child { border-top: 1px solid var(--line); }
  .main-nav a::after { display: none; }
  .main-nav a.active { color: var(--accent-dark); }
  body.menu-open .site-header { background: #fbfaf7; }
  .hero-media { width: 76%; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process-cards { grid-template-columns: repeat(3, 1fr); row-gap: 34px; }
  .process-progress-line { display: none; }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-list { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  :root { --container: calc(100vw - 34px); --header-h: 68px; }
  body { font-size: 14px; }
  .section { padding: 72px 0; }
  .brand strong { font-size: 20px; }
  .main-nav { padding: 34px 24px 30px; }
  .main-nav a { padding-block: 14px 16px; font-size: clamp(38px, 11vw, 50px); }
  .hero { min-height: 820px; background: var(--bg); }
  .hero-media { top: var(--header-h); width: 100%; height: 52%; bottom: auto; }
  .hero-media::after { background: linear-gradient(0deg, #fbfaf7 0%, rgba(251,250,247,.92) 17%, rgba(251,250,247,.12) 58%, transparent); }
  .hero-content { min-height: 820px; align-items: flex-end; }
  .hero-copy { width: 100%; padding: 0 0 64px; }
  .hero h1 { font-size: clamp(58px, 17vw, 82px); }
  .hero-lead { max-width: 100%; }
  .hero-actions { flex-wrap: wrap; }
  .scroll-cue { display: none; }
  .about-grid, .section-heading, .values-grid, .contact-layout { grid-template-columns: 1fr; }
  .display { font-size: clamp(45px, 13vw, 64px); }
  .stats { grid-template-columns: 1fr 1fr; margin-top: 46px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card-media { height: 220px; }
  .process-cards { display: flex; overflow-x: auto; gap: 16px; padding-bottom: 14px; scroll-snap-type: x mandatory; }
  .process-tab { min-width: 250px; scroll-snap-align: start; }
  .process-controls { justify-content: flex-start; }
  .project-filters { justify-content: flex-start; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card-media { height: 250px; }
  .values-visual { min-height: 420px; }
  .form-row { grid-template-columns: 1fr; }
  .map-card { height: 340px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { gap: 20px; align-items: flex-start; flex-direction: column; }
}

@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .process-controls p { min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* İç sayfalar */
.service-card { display: block; color: inherit; }
.page-hero { position: relative; min-height: 610px; padding-top: var(--header-h); overflow: hidden; background: #2d2924; }
.page-hero-media { position: absolute; inset: var(--header-h) 0 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; animation: heroZoom 11s ease-out forwards; }
.page-hero-shade { position: absolute; inset: var(--header-h) 0 0; background: linear-gradient(90deg, rgba(25,21,17,.78) 0%, rgba(25,21,17,.52) 42%, rgba(25,21,17,.12) 78%), linear-gradient(0deg, rgba(25,21,17,.28), transparent 55%); }
.page-hero-content { position: relative; z-index: 2; min-height: calc(610px - var(--header-h)); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; color: #fff; }
.page-hero-content h1 { max-width: 910px; margin: 0; font-family: var(--serif); font-size: clamp(68px, 7vw, 108px); font-weight: 500; line-height: .88; letter-spacing: -.035em; }
.page-hero-content h1 em { color: #e0ae73; font-weight: 500; }
.page-hero-content > p:last-child { max-width: 590px; margin: 30px 0 0; color: rgba(255,255,255,.82); font-size: 16px; }
.page-hero-content .eyebrow { color: #e0ae73; }
.page-hero-services .page-hero-media img { object-position: center 58%; }
.page-hero-process .page-hero-media img { object-position: center 45%; }
.page-hero-contact .page-hero-media img { object-position: center 54%; }

.page-intro { background: var(--panel); }
.split-story { display: grid; grid-template-columns: 1fr .9fr; gap: 8vw; align-items: start; }
.story-copy { color: var(--muted); font-size: 17px; }
.story-copy p { margin: 0; }
.story-copy p + p { margin-top: 22px; }
.principles-section { background: var(--panel-warm); }
.principle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.principle-card { min-height: 270px; padding: 30px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,.72); box-shadow: 0 10px 34px rgba(67,49,29,.04); }
.principle-card > span { color: var(--accent); font-family: var(--serif); font-size: 22px; font-style: italic; }
.principle-card h3 { margin: 44px 0 10px; font-family: var(--serif); font-size: 31px; font-weight: 500; line-height: 1; }
.principle-card p { margin: 0; color: var(--muted); }
.image-story { background: var(--bg); }
.image-story-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 7vw; align-items: center; }
.image-story-media { min-height: 600px; overflow: hidden; border-radius: 10px; box-shadow: var(--shadow); }
.image-story-media img { width: 100%; height: 100%; object-fit: cover; }
.image-story-copy > p:not(.eyebrow) { margin: 28px 0 32px; color: var(--muted); font-size: 16px; }

.service-details { padding-top: 10px; background: var(--panel); }
.detail-stack { display: grid; gap: 90px; }
.service-detail { display: grid; grid-template-columns: 1.06fr .94fr; gap: 7vw; align-items: center; scroll-margin-top: calc(var(--header-h) + 28px); }
.service-detail.reverse { grid-template-columns: .94fr 1.06fr; }
.service-detail.reverse .service-detail-media { order: 2; }
.service-detail-media { height: 510px; overflow: hidden; border-radius: 10px; box-shadow: var(--shadow); }
.service-detail-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.75,.2,1); }
.service-detail:hover .service-detail-media img { transform: scale(1.035); }
.service-detail > div:last-child > span { display: block; margin-bottom: 10px; color: var(--accent); font-family: var(--serif); font-size: 25px; font-style: italic; }
.service-detail h2 { margin: 0 0 20px; font-family: var(--serif); font-size: clamp(42px, 4.4vw, 66px); font-weight: 500; line-height: .98; }
.service-detail > div:last-child > p:not(.eyebrow) { color: var(--muted); font-size: 16px; }
.service-detail ul { display: grid; gap: 9px; margin: 24px 0 30px; padding: 0; list-style: none; }
.service-detail li { position: relative; padding-left: 20px; color: #514a42; }
.service-detail li::before { content: ""; position: absolute; left: 0; top: .7em; width: 8px; height: 1px; background: var(--accent); }

.timeline-section { padding-top: 30px; background: var(--panel); }
.timeline-list { position: relative; display: grid; gap: 0; }
.timeline-list::before { content: ""; position: absolute; top: 0; bottom: 0; left: 38px; width: 1px; background: var(--line-strong); }
.timeline-item { position: relative; display: grid; grid-template-columns: 76px 330px 1fr; gap: 28px; align-items: center; padding: 42px 0; border-bottom: 1px solid var(--line); }
.timeline-number { position: relative; z-index: 2; display: grid; place-items: center; width: 76px; height: 76px; border: 1px solid var(--accent); border-radius: 50%; color: var(--accent-dark); background: var(--bg); font-family: var(--serif); font-size: 24px; }
.timeline-item img { width: 100%; height: 210px; object-fit: cover; border-radius: 7px; }
.timeline-item h2 { margin: 0 0 8px; font-family: var(--serif); font-size: 39px; font-weight: 500; line-height: 1; }
.timeline-item p { margin: 0; color: var(--muted); }
.timeline-item span { display: inline-block; margin-top: 15px; color: var(--accent-dark); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.simple-cta { background: var(--panel-warm); }
.simple-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: clamp(34px, 5vw, 68px); border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.72); }
.simple-cta-inner h2 { margin: 0; font-family: var(--serif); font-size: clamp(44px, 5vw, 72px); font-weight: 500; line-height: .95; }

.project-grid-full { grid-template-columns: repeat(3, 1fr); }
.project-grid-full .project-card-media { height: 320px; }
.project-method { background: var(--panel-warm); }
.project-method-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 8vw; align-items: end; }
.project-method-grid > div:last-child p { margin: 0 0 28px; color: var(--muted); font-size: 17px; }
.contact-notes { padding-top: 0; background: var(--panel-warm); }
.map-card-large { height: 520px; }

@media (max-width: 1120px) {
  .principle-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail, .service-detail.reverse { grid-template-columns: 1fr 1fr; gap: 5vw; }
  .timeline-item { grid-template-columns: 76px 280px 1fr; }
  .project-grid-full { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .page-hero { min-height: 650px; }
  .page-hero-content { min-height: calc(650px - var(--header-h)); justify-content: flex-end; padding-bottom: 70px; }
  .page-hero-content h1 { font-size: clamp(55px, 16vw, 78px); }
  .page-hero-content > p:last-child { font-size: 14px; }
  .page-hero-shade { background: linear-gradient(0deg, rgba(25,21,17,.86) 0%, rgba(25,21,17,.54) 52%, rgba(25,21,17,.15) 100%); }
  .split-story, .image-story-grid, .project-method-grid { grid-template-columns: 1fr; }
  .principle-grid { grid-template-columns: 1fr; }
  .principle-card { min-height: 220px; }
  .image-story-media { min-height: 410px; }
  .service-detail, .service-detail.reverse { grid-template-columns: 1fr; gap: 30px; }
  .service-detail.reverse .service-detail-media { order: 0; }
  .service-detail-media { height: 360px; }
  .detail-stack { gap: 72px; }
  .timeline-list::before { left: 25px; }
  .timeline-item { grid-template-columns: 50px 1fr; gap: 18px; align-items: start; }
  .timeline-number { width: 50px; height: 50px; font-size: 18px; }
  .timeline-item img { grid-column: 2; height: 210px; }
  .timeline-item > div:last-child { grid-column: 2; }
  .simple-cta-inner { align-items: flex-start; flex-direction: column; }
  .project-grid-full { grid-template-columns: 1fr; }
  .project-grid-full .project-card-media { height: 270px; }
  .map-card-large { height: 390px; }
}

/* Proje kartları ve proje günlüğü */
.project-card { display: block; color: inherit; }
.project-card-media { position: relative; }
.project-card-overlay { position: absolute; inset: auto 14px 14px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 11px 13px; color: #fff; background: rgba(35,31,26,.74); border: 1px solid rgba(255,255,255,.22); border-radius: 5px; backdrop-filter: blur(10px); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; opacity: 0; transform: translateY(10px); transition: opacity .3s, transform .3s; }
.project-card:hover .project-card-overlay, .project-card:focus-visible .project-card-overlay { opacity: 1; transform: translateY(0); }
.project-card-overlay b { color: #e4b47c; font-size: 15px; }
.project-card-steps { display: flex; align-items: center; gap: 5px; margin-top: 15px; padding-top: 13px; border-top: 1px solid var(--line); }
.project-card-steps span { width: 18px; height: 2px; background: rgba(198,138,72,.42); }
.project-card-steps span:last-of-type { background: var(--accent); }
.project-card-steps em { margin-left: auto; color: var(--muted); font-size: 8px; font-style: normal; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.project-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

.project-detail-hero { position: relative; min-height: 760px; padding-top: var(--header-h); overflow: hidden; background: #2b261f; }
.project-detail-hero-media { position: absolute; inset: var(--header-h) 0 0; }
.project-detail-hero-media img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 11s ease-out forwards; }
.project-detail-hero-shade { position: absolute; inset: var(--header-h) 0 0; background: linear-gradient(90deg, rgba(24,20,16,.82) 0%, rgba(24,20,16,.52) 42%, rgba(24,20,16,.08) 78%), linear-gradient(0deg, rgba(24,20,16,.68) 0%, transparent 48%); }
.project-detail-hero-content { position: relative; z-index: 2; min-height: calc(760px - var(--header-h)); display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; padding-bottom: 74px; color: #fff; }
.project-breadcrumb { display: flex; align-items: center; gap: 10px; margin-bottom: 25px; color: rgba(255,255,255,.72); font-size: 9px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.project-breadcrumb a:hover { color: #fff; }
.project-detail-hero h1 { max-width: 950px; margin: 0; font-family: var(--serif); font-size: clamp(72px, 8.8vw, 136px); font-weight: 500; line-height: .82; letter-spacing: -.04em; }
.project-detail-hero-meta { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 30px; color: rgba(255,255,255,.82); font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.project-detail-hero-meta span { display: flex; align-items: center; gap: 9px; }
.project-detail-hero-meta span::before { content: ""; width: 20px; height: 1px; background: #dfaa6d; }

.project-overview { background: var(--panel); }
.project-overview-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 9vw; align-items: start; }
.project-overview-copy > p:not(.eyebrow) { max-width: 690px; margin: 28px 0 0; color: var(--muted); font-size: 18px; }
.project-facts { margin: 0; border-top: 1px solid var(--line-strong); }
.project-facts div { display: grid; grid-template-columns: 130px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.project-facts dt { color: var(--accent-dark); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.project-facts dd { margin: 0; font-family: var(--serif); font-size: 24px; line-height: 1; }

.project-stage-section { background: var(--bg-soft); }
.project-stage-viewer { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(360px, .65fr); min-height: 650px; overflow: hidden; border: 1px solid var(--line); border-radius: 10px; background: var(--panel); box-shadow: var(--shadow); }
.project-stage-media { position: relative; min-height: 650px; overflow: hidden; background: #ddd5ca; }
.project-stage-media img { width: 100%; height: 100%; object-fit: cover; transition: opacity .24s, transform .65s cubic-bezier(.2,.75,.2,1); }
.project-stage-media img.changing { opacity: .35; transform: scale(1.02); }
.project-stage-badge { position: absolute; left: 24px; top: 24px; padding: 10px 13px; color: #fff; background: rgba(35,31,26,.74); border: 1px solid rgba(255,255,255,.20); border-radius: 99px; backdrop-filter: blur(10px); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.project-stage-panel { display: flex; flex-direction: column; padding: clamp(32px, 4vw, 58px); }
.project-stage-panel .eyebrow { margin-bottom: 14px; }
.project-stage-panel h2 { margin: 0; font-family: var(--serif); font-size: clamp(44px, 4.4vw, 67px); font-weight: 500; line-height: .9; }
.project-stage-panel > p:not(.eyebrow) { margin: 24px 0 32px; color: var(--muted); font-size: 15px; }
.project-stage-tabs { display: grid; margin-top: auto; border-top: 1px solid var(--line); }
.project-stage-tab { display: grid; grid-template-columns: 44px 1fr; align-items: center; gap: 13px; min-height: 58px; padding: 0; border: 0; border-bottom: 1px solid var(--line); background: transparent; text-align: left; cursor: pointer; }
.project-stage-tab span { color: var(--accent); font-family: var(--serif); font-size: 18px; font-style: italic; }
.project-stage-tab strong { color: #6f685f; font-size: 10px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.project-stage-tab.active strong, .project-stage-tab:hover strong { color: var(--text); }
.project-stage-tab.active { background: linear-gradient(90deg, rgba(198,138,72,.09), transparent); }
.project-stage-controls { display: flex; align-items: center; gap: 10px; margin-top: 28px; }
.project-stage-controls button { width: 44px; height: 44px; border: 1px solid var(--line-strong); border-radius: 50%; background: #fff; cursor: pointer; transition: transform .25s, border-color .25s, color .25s; }
.project-stage-controls button:hover { color: var(--accent-dark); border-color: var(--accent); transform: translateY(-2px); }
.project-stage-note { margin: 16px 0 0; color: var(--muted); font-size: 10px; }

.project-gallery-section { background: var(--panel); }
.project-gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 240px; gap: 16px; }
.project-gallery-item { position: relative; grid-column: span 4; overflow: hidden; padding: 0; border: 0; border-radius: 8px; background: #ddd5ca; cursor: zoom-in; text-align: left; }
.project-gallery-item:nth-child(1), .project-gallery-item:nth-child(5) { grid-column: span 7; }
.project-gallery-item:nth-child(2), .project-gallery-item:nth-child(4) { grid-column: span 5; }
.project-gallery-item:nth-child(3) { grid-column: span 12; grid-row: span 2; }
.project-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.75,.2,1); }
.project-gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(30,25,20,.72), transparent 48%); }
.project-gallery-item:hover img { transform: scale(1.035); }
.project-gallery-item > span { position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 17px; display: flex; align-items: center; gap: 12px; color: #fff; font-family: var(--serif); font-size: 24px; line-height: 1; }
.project-gallery-item > span b { color: #e2ad70; font-family: var(--sans); font-size: 9px; letter-spacing: .12em; }
.project-related { background: var(--panel-warm); }
.related-project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.project-card-related .project-card-media { height: 265px; }

.project-lightbox[hidden] { display: none; }
.project-lightbox { position: fixed; inset: 0; z-index: 3000; display: grid; place-items: center; padding: 4vw; background: rgba(20,17,14,.94); }
body.lightbox-open { overflow: hidden; }
.project-lightbox-inner { width: min(1180px, 100%); }
.project-lightbox img { width: 100%; max-height: 78vh; object-fit: contain; }
.project-lightbox-caption { margin: 14px 0 0; color: #fff; font-family: var(--serif); font-size: 26px; }
.project-lightbox-close { position: absolute; top: 22px; right: 22px; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; color: #fff; background: rgba(255,255,255,.06); cursor: pointer; font-size: 22px; }

@media (max-width: 1120px) {
  .project-stage-viewer { grid-template-columns: 1fr; }
  .project-stage-media { min-height: 560px; }
  .project-stage-tabs { grid-template-columns: repeat(5, 1fr); }
  .project-stage-tab { grid-template-columns: 1fr; gap: 3px; padding: 12px; }
  .project-stage-tab strong { font-size: 8px; }
}

@media (max-width: 760px) {
  .project-card-overlay { opacity: 1; transform: none; }
  .project-detail-hero { min-height: 690px; }
  .project-detail-hero-content { min-height: calc(690px - var(--header-h)); padding-bottom: 54px; }
  .project-detail-hero h1 { font-size: clamp(62px, 20vw, 92px); }
  .project-overview-grid { grid-template-columns: 1fr; gap: 50px; }
  .project-overview-copy > p:not(.eyebrow) { font-size: 16px; }
  .project-stage-viewer { min-height: 0; }
  .project-stage-media { min-height: 350px; }
  .project-stage-panel { padding: 28px 22px 32px; }
  .project-stage-tabs { display: flex; overflow-x: auto; }
  .project-stage-tab { min-width: 150px; }
  .project-gallery { grid-template-columns: 1fr; grid-auto-rows: 270px; }
  .project-gallery-item, .project-gallery-item:nth-child(1), .project-gallery-item:nth-child(2), .project-gallery-item:nth-child(3), .project-gallery-item:nth-child(4), .project-gallery-item:nth-child(5) { grid-column: auto; grid-row: auto; }
  .related-project-grid { grid-template-columns: 1fr; }
  .project-lightbox { padding: 70px 15px 20px; }
}

/* Security-compatible UI helpers: no inline style attributes are required. */
.process-progress-line i[data-progress="1"] { width: 20%; }
.process-progress-line i[data-progress="2"] { width: 40%; }
.process-progress-line i[data-progress="3"] { width: 60%; }
.process-progress-line i[data-progress="4"] { width: 80%; }
.process-progress-line i[data-progress="5"] { width: 100%; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.quote-form button[disabled] { cursor: wait; opacity: .72; }

/* Responsive stability fixes — layout and visual design are preserved. */
.service-detail,
.service-detail.reverse {
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
}
.service-detail.reverse {
  grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
}
.service-detail > *,
.project-stage-viewer > *,
.project-stage-panel,
.project-overview-grid > *,
.section-heading > *,
.contact-layout > *,
.project-method-grid > *,
.image-story-grid > *,
.values-grid > * {
  min-width: 0;
}
.service-detail-media img,
.project-stage-media img {
  min-width: 0;
}

@media (max-width: 1120px) {
  .service-detail,
  .service-detail.reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .service-detail,
  .service-detail.reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .project-stage-viewer {
    width: var(--container);
    min-width: 0;
  }

  .project-stage-panel {
    width: 100%;
    overflow: hidden;
  }

  .project-stage-tabs {
    max-width: 100%;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }

  .process-cards,
  .project-filters {
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .page-hero-content h1,
  .project-detail-hero h1,
  .display,
  .simple-cta-inner h2 {
    max-width: 100%;
    overflow-wrap: break-word;
    hyphens: auto;
  }
}

@media (max-width: 360px) {
  :root { --container: calc(100vw - 28px); }
  .site-header { padding-inline: 14px; }
  .brand { gap: 9px; }
  .brand img { width: 34px; height: 34px; }
  .brand small { letter-spacing: .2em; }
  .page-hero-content h1 { font-size: clamp(43px, 14vw, 56px); }
  .project-detail-hero h1 { font-size: clamp(50px, 17vw, 72px); }
  .service-detail h2 { font-size: clamp(38px, 12vw, 50px); }
  .btn { padding-inline: 17px; gap: 14px; }
  .project-stage-panel { padding-inline: 18px; }
}


/* Zerdali Şahin logo güncellemesi */
.brand { gap: 0; }
.brand img { width: 74px; height: 74px; object-fit: contain; }
.brand span { display: none; }
.footer-brand .brand img { width: 84px; height: 84px; }
@media (max-width: 760px) {
  .brand img { width: 58px; height: 58px; }
  .footer-brand .brand img { width: 74px; height: 74px; }
}
@media (max-width: 360px) {
  .brand img { width: 50px; height: 50px; }
}

/* Logo + yazı düzeni: mevcut tasarımı bozmadan logo yanında Zerdali yazısı görünür */
.brand { gap: 12px !important; }
.brand img { width: 52px !important; height: 52px !important; object-fit: contain; flex: 0 0 auto; }
.brand span { display: grid !important; line-height: 1; }
.brand strong { font-family: var(--serif); font-size: 23px; font-weight: 600; }
.brand small { margin-top: 7px; color: var(--muted); font-size: 8px; letter-spacing: .28em; }
.footer-brand .brand img { width: 60px !important; height: 60px !important; }
@media (max-width: 760px) {
  .brand { gap: 10px !important; }
  .brand img { width: 46px !important; height: 46px !important; }
  .brand strong { font-size: 21px; }
  .brand small { letter-spacing: .24em; }
  .footer-brand .brand img { width: 54px !important; height: 54px !important; }
}
@media (max-width: 360px) {
  .brand { gap: 9px !important; }
  .brand img { width: 42px !important; height: 42px !important; }
  .brand strong { font-size: 18px; }
  .brand small { font-size: 7px; letter-spacing: .22em; }
}

/* Mobil menü ve tipografi düzenlemesi — mevcut masaüstü tasarım korunur */
@media (max-width: 1120px) {
  .main-nav {
    height: auto;
    max-height: calc(100vh - var(--header-h));
    max-height: calc(100dvh - var(--header-h));
    padding: 12px max(24px, 6vw) 18px;
    background: rgba(251, 250, 247, .98);
    box-shadow: 0 18px 44px rgba(52, 41, 28, .12);
    transform: translate3d(0, -12px, 0);
    transition: transform .28s ease, opacity .22s ease, visibility 0s linear .28s;
  }

  .main-nav.open {
    transform: translate3d(0, 0, 0);
    transition-delay: 0s;
  }

  .main-nav a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    color: #3f3932;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .main-nav a:first-child {
    border-top: 0;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 14px;
    line-height: 1.68;
  }

  .section {
    padding: 64px 0;
  }

  .main-nav {
    padding: 8px 20px 14px;
  }

  .main-nav a {
    padding: 14px 0;
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: .12em;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .eyebrow {
    gap: 10px;
    margin-bottom: 14px;
    font-size: 8px;
    letter-spacing: .18em;
  }

  .display {
    font-size: clamp(34px, 10.5vw, 48px);
    line-height: 1.02;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 64px);
    line-height: .9;
  }

  .hero-lead,
  .section-note,
  .about-copy,
  .story-copy,
  .image-story-copy > p:not(.eyebrow),
  .project-method-grid > div:last-child p,
  .project-overview-copy > p:not(.eyebrow),
  .service-detail > div:last-child > p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.72;
  }

  .section-heading {
    gap: 18px;
    margin-bottom: 32px;
  }

  .service-card-content {
    min-height: 116px;
    padding: 20px 54px 20px 20px;
  }

  .service-card h3 {
    font-size: clamp(23px, 6.5vw, 28px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .service-card p,
  .project-card-content p,
  .principle-card p,
  .timeline-item p,
  .value-list p {
    font-size: 13px;
    line-height: 1.62;
  }

  .page-hero-content h1 {
    font-size: clamp(38px, 12vw, 58px);
    line-height: .95;
  }

  .page-hero-content > p:last-child {
    font-size: 14px;
    line-height: 1.7;
  }

  .service-detail h2,
  .simple-cta-inner h2,
  .project-stage-panel h2 {
    font-size: clamp(34px, 9.5vw, 46px);
    line-height: .98;
  }

  .project-detail-hero h1 {
    font-size: clamp(42px, 13vw, 66px);
    line-height: .9;
  }

  .principle-card h3 {
    margin-top: 32px;
    font-size: 26px;
    line-height: 1.08;
  }

  .timeline-item h2 {
    font-size: 30px;
    line-height: 1.05;
  }
}

@media (max-width: 480px) {
  :root {
    --container: calc(100vw - 30px);
  }

  .main-nav a {
    font-size: 11.5px;
  }

  .hero h1 {
    font-size: clamp(42px, 12.5vw, 58px);
  }

  .display {
    font-size: clamp(32px, 10vw, 44px);
  }

  .page-hero-content h1,
  .project-detail-hero h1 {
    font-size: clamp(36px, 11vw, 52px);
  }
}

@media (max-width: 360px) {
  .main-nav a {
    font-size: 11px;
    letter-spacing: .10em;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand small {
    font-size: 6.5px;
    letter-spacing: .18em;
  }
}
