/* Zeyn Yacht — site.css
   Yön B: Modern Maritime Navy
   Palette: navy #0B1F3A, ivory #F5F1E8, brass #B89859, off-black #1A1A1A, sea blue #2C5F7C
   Typography: Playfair Display (display) + Inter (body)
   Style: Editorial Minimalism + Cinematic Photography (NO liquid glass) */

:root {
  --navy: #0B1F3A;
  --navy-2: #142A4A;
  --ivory: #F5F1E8;
  --ivory-2: #FAF7F0;
  --brass: #B89859;
  --brass-2: #cfa56a;
  --text: #1A1A1A;
  --text-soft: #4a4a4a;
  --sea: #2C5F7C;
  --line: #E5DECF;
  --line-dark: #2A3F5A;
  --success: #5A7A5A;
  --danger: #A14A4A;
  --shadow-sm: 0 2px 8px rgba(11, 31, 58, 0.06);
  --shadow-md: 0 12px 32px rgba(11, 31, 58, 0.12);
  --shadow-lg: 0 30px 80px rgba(11, 31, 58, 0.18);

  --font-display: 'Playfair Display', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --container: 1280px;
  --container-narrow: 840px;
  --radius-sm: 2px;
  --radius-md: 4px;

  --t: 200ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--ivory-2);
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
a:hover { color: var(--brass); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; margin: 0 0 1rem; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
h4 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase; }
p { margin: 0 0 1rem; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--narrow { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-head p { color: var(--text-soft); font-size: 1.05rem; }
.section-cta { text-align: center; margin-top: 3rem; }

.lede { font-size: 1.2rem; color: var(--text-soft); }
.kicker { text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.78rem; color: var(--brass); margin-bottom: 1rem; font-weight: 500; }
.subhead { margin-top: 2.5rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-soft); }
.empty-state { text-align: center; padding: 4rem 0; color: var(--text-soft); }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--navy); color: var(--ivory); padding: .5rem 1rem; z-index: 999; }
.skip-link:focus { left: 1rem; top: 1rem; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.6rem; border: 1px solid transparent;
  font-family: inherit; font-size: 0.92rem; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase;
  cursor: pointer; transition: all var(--t);
  border-radius: var(--radius-sm);
}
.btn-primary { background: var(--navy); color: var(--ivory); }
.btn-primary:hover { background: var(--navy-2); color: var(--ivory); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--ivory); }
.btn-cta { background: var(--brass); color: var(--ivory); border-color: var(--brass); }
.btn-cta:hover { background: var(--brass-2); color: var(--ivory); }
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1rem; }

.link-arrow { display: inline-block; color: var(--brass); font-weight: 500; letter-spacing: 0.04em; }
.link-arrow:hover { color: var(--navy); }

/* === HEADER === */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 241, 232, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1rem 1.5rem; max-width: var(--container); margin: 0 auto; }
.logo { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); }
.logo-mark { width: 32px; height: 32px; display: inline-grid; place-items: center; background: var(--navy); color: var(--brass); border-radius: 50%; font-size: 1rem; }
.logo-text { font-size: 1.1rem; letter-spacing: 0.18em; font-weight: 600; color: var(--navy); }
.logo-text em { font-style: normal; color: var(--brass); }

.primary-nav ul { list-style: none; display: flex; gap: 1.8rem; padding: 0; margin: 0; }
.primary-nav > ul > li > a { font-size: 0.92rem; letter-spacing: 0.04em; color: var(--navy); padding: 0.5rem 0; position: relative; }
.primary-nav > ul > li > a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--brass); transform: scaleX(0); transition: transform var(--t); transform-origin: center; }
.primary-nav > ul > li > a:hover::after { transform: scaleX(1); }
.has-sub { position: relative; }
.has-sub > a::before { content: '⌄'; margin-left: 0.4rem; font-size: 0.8em; color: var(--brass); }
.sub {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--ivory); padding: 0.5rem 0; min-width: 220px;
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
  opacity: 0; pointer-events: none; transition: opacity var(--t), transform var(--t);
  list-style: none;
}
.has-sub:hover > .sub, .has-sub:focus-within > .sub { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.sub li a { display: block; padding: 0.6rem 1.2rem; font-size: 0.9rem; }
.sub li a:hover { background: var(--ivory-2); color: var(--brass); }

.header-aside { display: flex; align-items: center; gap: 1.2rem; }
.lang-switch { display: inline-flex; gap: 0.4rem; font-size: 0.85rem; letter-spacing: 0.08em; }
.lang-switch a { color: var(--text-soft); }
.lang-switch a.active { color: var(--navy); font-weight: 600; }
.hamburger { display: none; background: transparent; border: 0; padding: 0.5rem; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--navy); transition: transform var(--t), opacity var(--t); }

/* === HERO === */
.hero {
  position: relative; min-height: 86vh; display: grid; place-items: center;
  color: var(--ivory); overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--sea) 100%);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,31,58,0.25) 0%, rgba(11,31,58,0.6) 100%); }
.hero-content { position: relative; z-index: 1; text-align: center; padding: 4rem 1.5rem; max-width: 900px; }
.hero-kicker { display: block; font-family: var(--font-display); font-style: italic; font-size: 1.2rem; opacity: 0.9; margin-bottom: 1rem; }
.hero-title { font-size: clamp(2.6rem, 7vw, 5.5rem); margin-bottom: 1.5rem; }
.hero-sub { font-size: 1.15rem; max-width: 640px; margin: 0 auto 2rem; opacity: 0.92; line-height: 1.6; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-actions .btn-ghost { color: var(--ivory); border-color: var(--ivory); }
.hero-actions .btn-ghost:hover { background: var(--ivory); color: var(--navy); }

.page-hero { padding: clamp(5rem, 10vw, 8rem) 0 clamp(3rem, 6vw, 5rem); text-align: center; background: var(--ivory); border-bottom: 1px solid var(--line); }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero .lede { max-width: 720px; margin: 0 auto; }
.page-hero--media { background-size: cover; background-position: center; color: var(--ivory); position: relative; min-height: 50vh; display: grid; align-items: center; }
.page-hero--media::before { content: ''; position: absolute; inset: 0; background: rgba(11,31,58,0.55); }
.page-hero--media .container { position: relative; z-index: 1; }

/* === YACHT GRID/CARD === */
.yacht-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; }
.yacht-grid--lg { gap: 3rem; }
.yacht-card { background: var(--ivory); border: 1px solid var(--line); transition: transform var(--t), box-shadow var(--t); }
.yacht-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.yacht-card-media { display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--navy); }
.yacht-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.yacht-card:hover .yacht-card-media img { transform: scale(1.04); }
.yacht-card-media .placeholder { width: 100%; height: 100%; display: grid; place-items: center; font-size: 3rem; color: var(--brass); }
.yacht-card-body { padding: 1.5rem 1.6rem 2rem; }
.yacht-card-body h3 { margin-bottom: 0.4rem; }
.yacht-tagline { color: var(--text-soft); font-size: 0.95rem; margin-bottom: 1rem; min-height: 2.7em; }
.yacht-meta { list-style: none; padding: 0; margin: 1rem 0; display: flex; gap: 1.4rem; flex-wrap: wrap; font-size: 0.82rem; color: var(--text-soft); border-top: 1px solid var(--line); padding-top: 1rem; }
.yacht-meta li strong { display: block; font-family: var(--font-display); font-size: 1.4rem; color: var(--navy); font-weight: 500; }

/* === YACHT DETAIL === */
.yacht-hero { min-height: 70vh; background-size: cover; background-position: center; background-color: var(--navy); position: relative; display: grid; align-items: end; color: var(--ivory); padding: 5rem 0 4rem; }
.yacht-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,31,58,0.2) 0%, rgba(11,31,58,0.75) 100%); }
.yacht-hero-content { position: relative; z-index: 1; }
.yacht-hero-content .kicker { color: var(--brass-2); }

.yacht-keyfacts { background: var(--navy); color: var(--ivory); padding: 2rem 0; }
.keyfacts-strip { display: flex; gap: 3rem; padding: 0; margin: 0; list-style: none; flex-wrap: wrap; justify-content: space-between; }
.keyfacts-strip li { display: flex; flex-direction: column; align-items: flex-start; }
.keyfacts-strip span { font-family: var(--font-display); font-size: 2rem; color: var(--brass); }
.keyfacts-strip em { font-style: normal; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.7; }

.specs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 0; border-top: 1px solid var(--line); }
.spec-row { display: flex; justify-content: space-between; padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
.spec-label { color: var(--text-soft); font-size: 0.92rem; }
.spec-value { font-family: var(--font-display); font-size: 1.05rem; }
.cabin-list, .amenities-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 1rem; margin: 1rem 0 0; }
.cabin-list li, .amenities-list li { padding: 0.6rem 1.2rem; background: var(--ivory); border: 1px solid var(--line); font-size: 0.9rem; }
.cabin-list li strong { color: var(--brass); margin-right: 0.4rem; font-family: var(--font-display); }
.price-display { font-family: var(--font-display); font-size: 1.4rem; color: var(--navy); margin-top: 0.5rem; }

/* === RICH TEXT === */
.rich-text { font-size: 1.05rem; line-height: 1.75; color: var(--text); }
.rich-text p { margin-bottom: 1.3rem; }
.rich-text h2 { margin-top: 2.5rem; }
.rich-text h3 { margin-top: 2rem; }
.rich-text strong { color: var(--navy); }
.rich-text em { font-style: italic; }

/* === GALLERY === */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.5rem; }
.gallery-item { display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--navy); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.gallery-item:hover img { transform: scale(1.06); }

/* === PROJECTS === */
.project-list { list-style: none; padding: 0; margin: 0; }
.project-item { display: grid; grid-template-columns: 130px 1fr; gap: 2rem; padding: 2rem 0; border-bottom: 1px solid var(--line); }
.project-year { font-family: var(--font-display); font-size: 1.4rem; color: var(--brass); }
.project-body h3 { margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap; }
.project-meta { display: flex; gap: 0.6rem; flex-wrap: wrap; font-size: 0.85rem; color: var(--text-soft); margin-bottom: 0.6rem; }
.size-pill, .builder-pill, .cat-pill { padding: 0.2rem 0.6rem; border: 1px solid var(--line); border-radius: var(--radius-sm); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-soft); }
.builder-pill { background: var(--navy); color: var(--ivory); border-color: var(--navy); }
.size-pill { color: var(--brass); border-color: var(--brass); }

/* === DESTINATIONS === */
.dest-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.dest-grid--lg { grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); }
.dest-card {
  display: block; position: relative; aspect-ratio: 4/5; overflow: hidden;
  color: var(--ivory);
  background:
    linear-gradient(160deg, rgba(11,31,58,0.55) 0%, rgba(11,31,58,0.85) 100%),
    radial-gradient(ellipse at 30% 20%, var(--sea), var(--navy) 65%);
}
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; position: absolute; inset: 0; }
.dest-card:hover img { transform: scale(1.05); }
.dest-card::before {
  content: '⚓';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -65%);
  font-size: 5rem; color: rgba(184, 152, 89, 0.18);
  pointer-events: none;
}
.dest-card:has(img)::before { display: none; }
.dest-card-body {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem 1.8rem 2rem;
  background: linear-gradient(180deg, transparent, rgba(11,31,58,0.85));
  color: var(--ivory); z-index: 1;
}
.dest-card-body h3 { margin-bottom: 0.3rem; color: var(--ivory); }
.dest-card-body p { font-size: 0.92rem; opacity: 0.9; }
.dest-card .placeholder { display: none; }

.month-list { display: flex; gap: 0.5rem; flex-wrap: wrap; padding: 0; list-style: none; }
.month-list li { padding: 0.4rem 0.9rem; background: var(--ivory); border: 1px solid var(--line); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; }
.route { font-family: var(--font-display); font-size: 1.15rem; padding: 1.2rem 1.5rem; background: var(--ivory); border-left: 3px solid var(--brass); }

/* === STORY (home) === */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.story-text h2 { margin-bottom: 1.2rem; }
.story-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

/* === JOURNAL === */
.journal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; }
.journal-card { background: var(--ivory); border: 1px solid var(--line); padding: 0; }
.journal-card img { aspect-ratio: 16/10; object-fit: cover; }
.journal-card h2, .journal-card h3 { padding: 1.5rem 1.5rem 0; font-size: 1.25rem; }
.journal-card p { padding: 0 1.5rem; color: var(--text-soft); }
.journal-card .link-arrow { padding: 0 1.5rem 1.5rem; display: inline-block; }

/* === CTA BAND === */
.section--cta-band { background: var(--navy); color: var(--ivory); }
.section--inquiry-band { background: var(--ivory); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta-band { text-align: center; padding: 1rem 1.5rem; }
.cta-band h2 { color: inherit; }
.cta-band p { font-size: 1.05rem; opacity: 0.85; max-width: 640px; margin: 0 auto 2rem; }

/* === FORMS === */
.form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-step { border: 0; padding: 0; margin: 0 0 2rem; }
.form-step legend { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 1.2rem; color: var(--navy); }
.field { display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label, .field > label, .form > .field > label { font-size: 0.85rem; color: var(--text-soft); letter-spacing: 0.04em; }
.field input, .field select, .field textarea, .form input, .form select, .form textarea {
  padding: 0.85rem 1rem; border: 1px solid var(--line); background: #fff;
  font-family: inherit; font-size: 1rem; color: var(--text);
  border-radius: var(--radius-sm);
  transition: border-color var(--t), box-shadow var(--t);
}
.field input:focus, .field select:focus, .field textarea:focus, .form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(184, 152, 89, 0.15);
}
.field--checkbox label { display: flex; gap: 0.5rem; align-items: center; cursor: pointer; }
.alert { padding: 1.5rem 2rem; border-left: 3px solid var(--success); background: var(--ivory); }
.alert-success { border-color: var(--success); }
.alert h3 { margin-bottom: 0.4rem; }

.contact-grid { display: grid; grid-template-columns: 320px 1fr; gap: 4rem; align-items: start; }
.contact-info h3 { margin-bottom: 1rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--brass); }
.contact-info p { margin-bottom: 0.6rem; }

/* === FOOTER === */
.site-footer { background: var(--navy); color: var(--ivory); padding: 4rem 0 0; margin-top: 5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(4, 1fr); gap: 3rem; padding-bottom: 3rem; }
.footer-col h4 { color: var(--brass); margin-bottom: 1rem; font-size: 0.78rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: var(--ivory); opacity: 0.85; font-size: 0.92rem; }
.footer-col a:hover { color: var(--brass); opacity: 1; }
.footer-tagline { font-family: var(--font-display); font-style: italic; color: var(--brass-2); margin: 1rem 0 1.5rem; }
.footer-brand .logo-text { color: var(--ivory); }
.footer-brand .logo-text em { color: var(--brass); }
.social { list-style: none; padding: 0; display: flex; gap: 0.6rem; }
.social a { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--line-dark); border-radius: 50%; font-size: 0.78rem; }
.social a:hover { background: var(--brass); border-color: var(--brass); color: var(--navy); }
.footer-contact .address { font-size: 0.88rem; opacity: 0.8; line-height: 1.6; }
.footer-bottom { border-top: 1px solid var(--line-dark); padding: 1.5rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom small { opacity: 0.6; }
.legal-links { list-style: none; padding: 0; margin: 0; display: flex; gap: 1.5rem; }
.legal-links a { font-size: 0.82rem; opacity: 0.7; }

/* === WHATSAPP FLOAT === */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 40;
  width: 56px; height: 56px; background: #25D366; color: #fff;
  display: grid; place-items: center; border-radius: 50%;
  box-shadow: var(--shadow-md); font-size: 0.78rem; letter-spacing: 0.08em;
  transition: transform var(--t), background var(--t);
}
.wa-float:hover { transform: scale(1.06); background: #20bd5a; color: #fff; }

/* === MOBILE === */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .hamburger { display: inline-flex; }

  /* Mobile menü: sağdan kayan tam-sayfa panel, akordion sub'lar */
  .primary-nav {
    position: fixed !important;
    top: 64px !important; right: 0 !important; bottom: 0 !important; left: 0 !important;
    background: var(--ivory) !important;
    padding: 2rem 1.5rem !important;
    transform: translateX(100%);
    transition: transform var(--t);
    overflow-y: auto;
    z-index: 49;
  }
  .primary-nav.open { transform: translateX(0); }
  .primary-nav > ul {
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none;
  }
  .primary-nav > ul > li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--line);
  }
  .primary-nav > ul > li > a {
    font-family: var(--font-display);
    font-size: 1.4rem !important;
    color: var(--navy);
    padding: 0.4rem 0 !important;
    display: block;
  }
  .primary-nav > ul > li > a::after { display: none !important; }
  .primary-nav .has-sub > a::before { display: none !important; }

  /* Sub-menüler: static akordion, daima açık */
  .primary-nav .sub {
    display: block !important;
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    min-width: 0 !important;
    padding: 0.4rem 0 0.5rem 0.8rem !important;
    margin: 0 !important;
    list-style: none;
  }
  .primary-nav .sub li {
    padding: 0;
    border: 0 !important;
  }
  .primary-nav .sub li a {
    font-family: var(--font-body) !important;
    font-size: 0.98rem !important;
    color: var(--text-soft) !important;
    padding: 0.45rem 0 !important;
    display: block;
    background: transparent !important;
  }
  .primary-nav .sub li a:hover { color: var(--brass) !important; background: transparent !important; }

  .header-aside .btn-cta { display: none; }
  .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .field-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .keyfacts-strip { gap: 1.5rem; justify-content: flex-start; }
  .keyfacts-strip span { font-size: 1.5rem; }
  .yacht-meta { gap: 1rem; }
  .project-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .project-year { font-size: 1.05rem; }

  /* Hamburger animasyonu */
  .hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* === A11Y FOCUS === */
:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }

/* === PRINT === */
@media print {
  .site-header, .site-footer, .hero, .wa-float, .btn { display: none; }
  body { color: #000; background: #fff; }
}
