/* =====================================================================
   ATELIER ACADEMY — Premium Multi-Page Art & Design School Template
   Plain HTML5 + CSS3. No frameworks. No build step.
   ---------------------------------------------------------------------
   REBRAND TIP: Change the look by editing the CSS variables in :root
   below. Everything (colors, radius, shadows, fonts) cascades from here.
   Update the Google Fonts <link> in each HTML file if you change fonts.
   ===================================================================== */

:root {
  /* --- Brand palette (edit these to rebrand) --- */
  --bg:        #fbf7f1;   /* warm cream canvas background       */
  --bg-2:      #f4ede2;   /* deeper cream for alt sections      */
  --ink:       #221c1a;   /* near-black ink (headings)          */
  --accent:    #ef6b53;   /* bold coral (primary)               */
  --accent-d:  #d8523b;   /* darker coral for hovers            */
  --accent2:   #18857a;   /* deep teal (secondary)              */
  --accent2-d: #106a61;   /* darker teal                        */
  --gold:      #c79a3a;   /* muted ochre/gold accent            */
  --muted:     #7a6f68;   /* muted warm grey text               */
  --surface:   #ffffff;   /* card / surface white               */
  --line:      #ece2d4;   /* warm hairline borders              */

  /* --- Fonts --- */
  --font-head: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* --- Shape & motion --- */
  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow:    0 14px 34px rgba(34, 28, 26, .08);
  --shadow-lg: 0 28px 60px rgba(34, 28, 26, .16);
  --shadow-c:  0 12px 28px rgba(239, 107, 83, .30);
  --ease:      .35s cubic-bezier(.33, 1, .68, 1);

  /* --- Layout --- */
  --maxw: 1200px;
  --gutter: 24px;
}

/* ---------------------------------------------------------------------
   RESET / BASE
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: #443c38;
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.08;
  margin: 0 0 .5em;
  font-weight: 600;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2.4rem, 5.6vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); }
h3 { font-size: 1.4rem; }

p { margin: 0 0 1rem; }

a { color: var(--accent2-d); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--accent-d); }

img, svg { max-width: 100%; display: block; }

ul { margin: 0; padding: 0; list-style: none; }

/* ---------------------------------------------------------------------
   LAYOUT HELPERS
   --------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: 96px 0; position: relative; }
.section--soft { background: var(--bg-2); }
.section--ink  { background: #221c1a; }
.section--tight { padding: 64px 0; }

.section-head {
  max-width: 740px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head--left { margin-left: 0; text-align: left; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-d);
  background: rgba(239, 107, 83, .12);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow.is-teal { color: var(--accent2-d); background: rgba(24, 133, 122, .12); }
.eyebrow.is-gold { color: #9d7820; background: rgba(199, 154, 58, .16); }

.lead { font-size: 1.16rem; color: #5b524c; }
.muted { color: var(--muted); }

/* ---------------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .98rem;
  padding: 13px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-c);
}
.btn-primary:hover { background: var(--accent-d); color: #fff; box-shadow: 0 16px 34px rgba(239, 107, 83, .42); }

.btn-teal {
  background: var(--accent2);
  color: #fff;
  box-shadow: 0 12px 28px rgba(24, 133, 122, .30);
}
.btn-teal:hover { background: var(--accent2-d); color: #fff; }

.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-d); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; }

.btn-light {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-light:hover { background: #fff; color: var(--ink); }

/* ---------------------------------------------------------------------
   HEADER / NAV  (shared, identical IDs on every page)
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 241, .88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: -.01em;
}
.brand:hover { color: var(--ink); }
.brand .logo-mark {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 8px 18px rgba(239, 107, 83, .35);
  transition: transform var(--ease);
}
.brand:hover .logo-mark { transform: rotate(-8deg) scale(1.05); }
.brand .logo-mark svg { width: 24px; height: 24px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .98rem;
  color: #5a524c;
  padding: 8px 15px;
  border-radius: 10px;
  transition: background var(--ease), color var(--ease);
}
.nav-links a:hover { background: rgba(239, 107, 83, .12); color: var(--accent-d); }
.nav-links a.active { color: var(--accent-d); font-weight: 600; }

.nav-cta { margin-left: 8px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  background: rgba(239, 107, 83, .12);
  border: none;
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2.5px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------------------------------------------------------------------
   HERO (home)
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(680px 440px at 92% -10%, rgba(239, 107, 83, .14), transparent 62%),
    radial-gradient(560px 420px at 0% 110%, rgba(24, 133, 122, .12), transparent 60%);
  padding: 80px 0 88px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero .lead { max-width: 520px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-stats { display: flex; gap: 34px; flex-wrap: wrap; align-items: center; }
.hero-stats .hs strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: var(--ink);
  line-height: 1;
}
.hero-stats .hs span { font-size: .88rem; color: var(--muted); }

/* Hero image collage */
.hero-visual { position: relative; }
.hero-visual .hv-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--bg-2);
}
.hero-visual .hv-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .hv-chip {
  position: absolute;
  background: var(--surface);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}
.hero-visual .hv-chip .chip-ic {
  width: 42px; height: 42px; flex: 0 0 auto;
  border-radius: 12px; display: grid; place-items: center;
  background: rgba(239, 107, 83, .14); color: var(--accent-d);
}
.hero-visual .hv-chip b { font-family: var(--font-head); color: var(--ink); display: block; font-size: 1.05rem; }
.hero-visual .hv-chip small { color: var(--muted); font-size: .82rem; }
.hero-visual .hv-chip.c1 { top: -20px; left: -22px; animation: floaty 5s ease-in-out infinite; }
.hero-visual .hv-chip.c2 { bottom: 26px; right: -24px; animation: floaty 6s ease-in-out infinite .8s; }
.hero-visual .hv-thumb {
  position: absolute;
  bottom: -26px; left: 30px;
  width: 130px; height: 130px;
  border-radius: 18px;
  overflow: hidden;
  border: 5px solid var(--surface);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.hero-visual .hv-thumb img { width: 100%; height: 100%; object-fit: cover; }

@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---------------------------------------------------------------------
   MARQUEE / DISCIPLINE STRIP
   --------------------------------------------------------------------- */
.disc-strip {
  background: var(--ink);
  color: rgba(255,255,255,.9);
  padding: 22px 0;
  overflow: hidden;
}
.disc-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 38px;
}
.disc-track span {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.25rem;
  color: rgba(255,255,255,.78);
  display: inline-flex;
  align-items: center;
  gap: 38px;
}
.disc-track span::after { content: "✺"; color: var(--accent); font-style: normal; font-size: 1rem; }

/* ---------------------------------------------------------------------
   CARDS / GRIDS
   --------------------------------------------------------------------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  position: relative;
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: rgba(239, 107, 83, .35); }

.card .icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: rgba(239, 107, 83, .12);
  color: var(--accent-d);
  display: grid; place-items: center;
  margin-bottom: 18px;
  transition: transform var(--ease);
}
.card .icon svg { width: 28px; height: 28px; }
.card:hover .icon { transform: rotate(-8deg) scale(1.06); }
.card .icon.is-teal { background: rgba(24, 133, 122, .12); color: var(--accent2-d); }
.card .icon.is-gold { background: rgba(199, 154, 58, .16); color: #9d7820; }
.card h3 { margin-bottom: 8px; }
.card p { color: #5b524c; margin-bottom: 0; }

/* ---------------------------------------------------------------------
   PROGRAM / COURSE CARDS (with photos)
   --------------------------------------------------------------------- */
.program-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
  display: flex;
  flex-direction: column;
}
.program-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.program-media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--bg-2);
}
.program-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.program-card:hover .program-media img { transform: scale(1.06); }
.program-media .level-pill {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--font-body); font-weight: 600; font-size: .76rem;
  letter-spacing: .04em; text-transform: uppercase;
  background: rgba(255,255,255,.92); color: var(--ink);
  padding: 6px 13px; border-radius: 999px;
}
.program-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.program-body h3 { margin-bottom: 6px; }
.program-body > p { color: #5b524c; }
.program-meta {
  display: flex; flex-wrap: wrap; gap: 8px 16px;
  margin: 4px 0 16px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--muted);
}
.program-meta span { display: inline-flex; align-items: center; gap: 7px; }
.program-meta svg { width: 16px; height: 16px; color: var(--accent2); }
.program-body .btn { margin-top: auto; align-self: flex-start; }

/* Filter bar (shared by programs + gallery) */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}
.filter-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .92rem;
  color: #5a524c;
  background: var(--surface);
  border: 1.5px solid var(--line);
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--ease);
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent-d); transform: translateY(-2px); }
.filter-btn.active { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ---------------------------------------------------------------------
   SPLIT SECTION (intro / teaser with image)
   --------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5 / 4;
  position: relative;
  background: var(--bg-2);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media .sm-tag {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(34,28,26,.78); color: #fff;
  font-size: .82rem; padding: 8px 14px; border-radius: 999px;
  backdrop-filter: blur(6px);
}

.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .tick {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent2), var(--accent2-d));
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 16px rgba(24, 133, 122, .3);
}
.feature .tick svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.16rem; margin-bottom: 4px; }
.feature p { margin-bottom: 0; font-size: .98rem; color: #5b524c; }

/* ---------------------------------------------------------------------
   GALLERY (teaser + page)
   --------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--bg-2);
  box-shadow: var(--shadow);
}
.gallery-item.tall { aspect-ratio: 3 / 4; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 28px 16px 14px;
  background: linear-gradient(transparent, rgba(34,28,26,.82));
  color: #fff;
  opacity: 0;
  transition: opacity var(--ease);
}
.gallery-item:hover figcaption { opacity: 1; }
.gallery-item figcaption b { font-family: var(--font-head); font-weight: 600; display: block; font-size: 1rem; }
.gallery-item figcaption span { font-size: .8rem; color: rgba(255,255,255,.78); }

/* ---------------------------------------------------------------------
   FACULTY / TEAM
   --------------------------------------------------------------------- */
.team-card { text-align: center; padding: 0; overflow: hidden; }
.team-card .team-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-2);
}
.team-card .team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-card .team-body { padding: 22px 24px 28px; }
.team-card h3 { font-size: 1.18rem; margin-bottom: 2px; }
.team-card .role { color: var(--accent-d); font-family: var(--font-body); font-weight: 600; font-size: .86rem; letter-spacing: .03em; text-transform: uppercase; margin-bottom: 10px; }
.team-card p { font-size: .94rem; color: var(--muted); margin-bottom: 0; }

/* ---------------------------------------------------------------------
   TESTIMONIALS
   --------------------------------------------------------------------- */
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px;
  box-shadow: var(--shadow);
  position: relative;
}
.quote-card .stars { color: var(--gold); margin-bottom: 14px; letter-spacing: 2px; }
.quote-card blockquote {
  margin: 0 0 22px;
  font-size: 1.12rem;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
}
.quote-author { display: flex; align-items: center; gap: 14px; }
.quote-author img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}
.quote-author b { display: block; font-family: var(--font-head); color: var(--ink); font-weight: 600; }
.quote-author span { font-size: .86rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   CTA BAND
   --------------------------------------------------------------------- */
.cta-band {
  background:
    radial-gradient(560px 380px at 88% 14%, rgba(199, 154, 58, .35), transparent 60%),
    linear-gradient(135deg, var(--accent), var(--accent-d));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.92); max-width: 560px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------------------
   PAGE BANNER (inner pages)
   --------------------------------------------------------------------- */
.page-banner {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(620px 360px at 86% -20%, rgba(239, 107, 83, .14), transparent 60%),
    radial-gradient(420px 320px at 6% 120%, rgba(24, 133, 122, .12), transparent 60%),
    var(--bg-2);
  padding: 70px 0 64px;
  border-bottom: 1px solid var(--line);
}
.page-banner h1 { margin-bottom: 12px; position: relative; z-index: 1; }
.page-banner p { max-width: 660px; color: #5b524c; margin-bottom: 0; position: relative; z-index: 1; }
.breadcrumb {
  font-family: var(--font-body);
  font-size: .86rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.breadcrumb a { color: var(--accent2-d); }
.breadcrumb span { margin: 0 6px; }

/* ---------------------------------------------------------------------
   STAT STRIP / ACCREDITATION
   --------------------------------------------------------------------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-strip .st strong {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--accent-d);
  line-height: 1;
  display: block;
}
.stat-strip .st span { color: var(--muted); font-size: .94rem; }

.logo-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 18px;
}
.logo-row .accr {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 24px;
  box-shadow: var(--shadow);
  font-size: .96rem;
}

/* ---------------------------------------------------------------------
   FAQ (accordion) — used on contact
   --------------------------------------------------------------------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q .chev { transition: transform var(--ease); color: var(--accent); flex: 0 0 auto; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--ease), padding var(--ease); padding: 0 24px; }
.faq-item.open .faq-a { max-height: 340px; padding: 0 24px 22px; }
.faq-a p { margin: 0; color: #5b524c; font-size: .98rem; }

/* ---------------------------------------------------------------------
   CONTACT
   --------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: start; }
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fdfbf7;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(239, 107, 83, .14);
}
.field textarea { resize: vertical; min-height: 130px; }
.field .error-msg { color: #d8523b; font-size: .84rem; margin-top: 5px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #d8523b; }
.field.invalid .error-msg { display: block; }
.form-note { font-size: .86rem; color: var(--muted); margin-top: 6px; }
.form-status {
  display: none;
  margin-top: 18px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: rgba(24, 133, 122, .1);
  border: 1px solid rgba(24, 133, 122, .4);
  color: var(--accent2-d);
  font-weight: 500;
}
.form-status.show { display: block; }

.info-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 22px;
}
.info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.info-row:last-child { margin-bottom: 0; }
.info-row .info-ic {
  width: 46px; height: 46px; flex: 0 0 auto;
  border-radius: 12px; background: #fff;
  display: grid; place-items: center;
  color: var(--accent-d);
  box-shadow: var(--shadow);
}
.info-row .info-ic svg { width: 22px; height: 22px; }
.info-row b { font-family: var(--font-head); color: var(--ink); display: block; }
.info-row span { font-size: .94rem; color: #5b524c; }

/* Map placeholder */
.map-placeholder {
  border-radius: var(--radius);
  min-height: 240px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
}
.map-placeholder img { width: 100%; height: 100%; object-fit: cover; min-height: 240px; }
.map-placeholder .pin {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  text-align: center;
  color: #fff;
  background: rgba(34,28,26,.32);
}
.map-placeholder .pin b { font-family: var(--font-head); display: block; font-size: 1.1rem; }
.map-placeholder .pin span { font-size: .86rem; }

/* ---------------------------------------------------------------------
   FOOTER (shared)
   --------------------------------------------------------------------- */
.site-footer {
  background: #221c1a;
  color: rgba(255,255,255,.74);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 44px;
}
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer .brand:hover { color: #fff; }
.footer-about p { font-size: .95rem; color: rgba(255,255,255,.66); max-width: 320px; }
.footer-col h4 {
  color: #fff; font-family: var(--font-head); font-size: 1.05rem;
  margin-bottom: 14px;
}
.footer-col a { display: block; color: rgba(255,255,255,.66); padding: 5px 0; font-size: .95rem; }
.footer-col a:hover { color: var(--accent); }
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
  color: rgba(255,255,255,.8);
}
.social a svg { width: 18px; height: 18px; }
.social a:hover { background: var(--accent); color: #fff; transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .88rem;
  color: rgba(255,255,255,.56);
}
.footer-bottom a { color: rgba(255,255,255,.74); }

/* ---------------------------------------------------------------------
   SCROLL-REVEAL
   --------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.33, 1, .68, 1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.no-io .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid, .gallery-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-width: 440px; margin: 8px auto 30px; }
}

@media (max-width: 768px) {
  .section { padding: 68px 0; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 14px var(--gutter) 22px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ease), transform var(--ease);
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 12px 14px; }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid, .gallery-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .split--reverse .split-media { order: 0; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .cta-band { padding: 48px 28px; }
  .hero-visual .hv-chip.c1 { left: -8px; }
  .hero-visual .hv-chip.c2 { right: -8px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid, .gallery-grid.cols-3 { grid-template-columns: 1fr 1fr; }
  .hero-visual .hv-chip { display: none; }
  .hero-visual .hv-thumb { display: none; }
}
