@font-face {
  font-family: "The Seasons";
  src: url("assets/TheSeasons-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #F7F1E9;
  --surface: #fffaf5;
  --surface-2: #f4e7d8;
  --text: #49331c;
  --muted: rgba(73, 51, 28, 0.72);
  --primary: #8d6a3d;
  --primary-dark: #49331c;
  --secondary: #dcc0a2;
  --line: rgba(73, 51, 28, 0.14);
  --line-soft: rgba(73, 51, 28, 0.08);
  --topbar: #49331c;
  --topbarH: 52px;
  --container: 1180px;
  --shadow: 0 18px 60px rgba(73, 51, 28, 0.14);
  --shadow-soft: 0 12px 30px rgba(73, 51, 28, 0.10);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --font-title: "The Seasons", Georgia, serif;
  --font-sans: "Montserrat", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(141, 106, 61, 0.20), transparent 60%),
    var(--bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

p {
  margin: 0 0 1rem 0;
  line-height: 1.8;
}

strong {
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

h1,
h2,
h3,
.hero-title,
.section-title,
.form-title,
.modal__title,
.services-editorial-title,
.meet-location-title,
.who-title,
.who-heading h2,
.who-founder-title {
  font-family: var(--font-title);
  font-weight: 400;
  line-height: 1.05;
  color: var(--primary-dark);
}

.container {
  width: min(var(--container), 92%);
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.section-kicker {
  margin: 0 0 10px 0;
  font-size: 11px;
  letter-spacing: 0.22em;

  font-weight: 700;
  color: var(--primary);
}

.section-kicker--light {
  color: rgba(255, 255, 255, 0.80);
  text-align: center;
}

.section-title {
  text-align: center;
  font-size: clamp(34px, 4vw, 58px);
  margin-bottom: 12px;
}

.section-subtitle {
  max-width: 760px;
  margin: 0 auto 34px auto;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}

/* ========================= BUTTONS ========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  padding: 13px 20px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    background 0.18s var(--ease),
    border-color 0.18s var(--ease),
    color 0.18s var(--ease),
    opacity 0.18s var(--ease),
    transform 0.18s var(--ease);
}

.btn:hover {
  opacity: 0.96;
  transform: translateY(-1px);
}

.btn-solid {
  background: var(--primary-dark);
  color: #fff;
}

.btn-solid:hover {
  background: var(--primary);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.82);
}

.btn-outline:hover {
  background: #fff;
  color: var(--primary-dark);
  border-color: #fff;
}

.btn-outline-black {
  background: transparent;
  color: var(--primary-dark);
  border-color: rgba(73, 51, 28, 0.22);
}

.btn-outline-black:hover {
  background: var(--primary-dark);
  color: #fff;
  border-color: var(--primary-dark);
}

/* ========================= HEADER ========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  transition: box-shadow 0.25s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(73, 51, 28, 0.08);
}

.topbar {
  background: var(--topbar);
  color: #fff;
}

.topbar-row {
  min-height: var(--topbarH);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-social,
.topbar-phone,
.topbar-cta {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.topbar-social:hover,
.topbar-phone:hover {
  opacity: 0.82;
}

.topbar-cta {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-pill);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.topbar-cta:hover {
  background: rgba(255, 255, 255, 0.10);
}

.header-main {
  position: relative;
  background: rgba(255, 250, 245, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition:
    background 0.28s var(--ease),
    border-color 0.28s var(--ease),
    backdrop-filter 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}

.site-header.is-scrolled .header-main {
  background: rgba(255, 250, 245, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(73, 51, 28, 0.10);
}

.header-shell {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "logo"
    "nav";
  align-items: center;
  justify-items: center;
  padding: 22px 0 20px;
  transition:
    grid-template-columns 0.28s var(--ease),
    padding 0.28s var(--ease),
    gap 0.28s var(--ease);
}

.header-brand {
  grid-area: logo;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: justify-content 0.28s var(--ease);
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transform-origin: center center;
  transition: transform 0.28s var(--ease);
}

.logo img {
  width: auto;
  height: 88px;
  transition:
    height 0.28s var(--ease),
    opacity 0.28s var(--ease),
    transform 0.28s var(--ease);
}

.header-nav-wrap {
  grid-area: nav;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 12px;
  transition: padding 0.28s var(--ease);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.nav a {
  position: relative;
  text-decoration: none;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 0;
  white-space: nowrap;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s var(--ease);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header-mobile-toggle {
  display: none;
}

.burger {
  width: 44px;
  height: 44px;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  border: 0;
  background: none;
  cursor: pointer;
  padding: 10px;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary-dark);
  transition:
    transform 0.18s var(--ease),
    opacity 0.18s var(--ease);
}

.burger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-header.is-scrolled .header-shell {
  grid-template-columns: minmax(170px, 220px) 1fr minmax(170px, 220px);
  grid-template-areas: "logo nav .";
  justify-items: stretch;
  padding: 10px 0;
}

.site-header.is-scrolled .header-brand {
  justify-content: flex-start;
}

.site-header.is-scrolled .header-nav-wrap {
  padding-top: 0;
}

.site-header.is-scrolled .logo img {
  height: 48px;
}

.site-header.is-scrolled .nav {
  gap: 28px;
}

.site-header.is-scrolled .nav a {
  padding: 8px 0;
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--surface);
  border-top: 1px solid var(--line-soft);
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 18px 0;
  overflow: hidden;
}

.mobile-nav[hidden] {
  display: none !important;
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ========================= HERO ========================= */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 82vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroBgFade 18s infinite ease-in-out;
}

.hero-bg::before {
  background-image: url("assets/hero2.jpg");
  animation-delay: 4s;
}

.hero-bg::after {
  background-image: url("assets/hero.jpg");
  animation-delay: 8s;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(73, 51, 28, 0.48), rgba(73, 51, 28, 0.72));
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
}

.hero-center {
  max-width: 980px;
  text-align: center;
  color: #fff;
}

.hero-kicker {
  margin: 0 0 16px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.92);
}

.hero-title--spaced {
  font-size: clamp(38px, 6vw, 72px);
  color: #fff;
  letter-spacing: 0.02em;
  text-transform: none;
}

.hero-subtitle--script {
  margin: 16px 0 18px 0;
  font-size: clamp(15px, 1.8vw, 22px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.94);
}

.hero-divider {
  display: block;
  width: min(560px, 86%);
  height: 1px;
  margin: 0 auto 18px auto;
  background: rgba(255, 255, 255, 0.58);
}

.hero-desc {
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.94);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 2;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius-pill);
  background: rgba(73, 51, 28, 0.20);
}

.hero-scroll:hover {
  background: rgba(141, 106, 61, 0.40);
}

@keyframes heroBgFade {
  0% {
    opacity: 0;
    transform: scale(1.06);
  }

  10% {
    opacity: 1;
    transform: scale(1.02);
  }

  30% {
    opacity: 1;
    transform: scale(1);
  }

  40% {
    opacity: 0;
    transform: scale(1.02);
  }

  100% {
    opacity: 0;
    transform: scale(1.06);
  }
}

/* ========================= SERVICES ========================= */

.services {
  background: transparent;
}

.services-editorial {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.services-editorial-intro {
  padding: 16px 12px 0 0;
}

.services-editorial-title {
  margin: 0 0 14px 0;
  font-size: clamp(36px, 5vw, 64px);
}

.services-editorial-text {
  max-width: 260px;
  color: var(--muted);
  font-size: 1rem;
}

.service-tile {
  min-height: 210px;
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
}

.service-tile--dark {
  background: var(--primary-dark);
  color: #fffaf5;
}

.service-tile--light {
  background: var(--secondary);
  color: var(--primary-dark);
}

.service-tile--medium {
  background: var(--primary);
  color: #fffaf5;
}

.service-tile__content h3 {
  margin: 0 0 12px 0;
  font-size: 30px;
  line-height: 1.1;
  color: inherit;
}

.service-tile__content p {
  margin: 0 0 14px 0;
  line-height: 1.65;
  color: inherit;
}

.service-tile__meta {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

.service-tile__btn {
  align-self: flex-start;
  margin-top: 18px;
  padding: 10px 14px;
  border: 1px solid currentColor;
  border-radius: var(--radius-pill);
  background: transparent;
  color: inherit;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.18s var(--ease),
    color 0.18s var(--ease),
    opacity 0.18s var(--ease);
}

.service-tile__btn:hover {
  background: rgba(255, 255, 255, 0.12);
  opacity: 0.95;
}

.service-tile--light .service-tile__btn:hover {
  background: rgba(73, 51, 28, 0.08);
}

/* ========================= BAND ========================= */

.band {
  position: relative;
  padding: 88px 0;
  background: linear-gradient(135deg, var(--primary-dark), #5d4325);
}

.band-inner {
  text-align: center;
  max-width: 980px;
}

.band-quote {
  margin: 0 0 18px 0;
  font-family: var(--font-title);
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.1;
  color: #fff;
}

.band-subtext {
  margin: 0 auto;
  max-width: 860px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
}

/* ========================= WHO SECTION ========================= */

.who-section {
  background: transparent;
}

.who-shell {
  max-width: 1180px;
}

.who-heading {
  margin-bottom: 34px;
}

.who-heading h2 {
  font-size: clamp(36px, 5vw, 62px);
}

.who-panel {
  background: #b5a084;
  color: #fffaf5;
  padding: 56px 42px 64px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.who-title {

  font-size: clamp(34px, 4vw, 58px);
  color: #fff;
  text-align: center;
  text-justify: auto;
}

.who-line {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  margin: 22px 0 34px;
}

.who-subtitle,
.who-values-title,
.who-founder-title,
.who-place-title {
  margin: 0 0 22px 0;
  font-family: var(--font-title);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  color: #fff;
    text-align: center;
  text-justify: auto;
}

.who-text,
.who-place-text {

  color: rgba(255, 250, 245, 0.92);
  font-size: 1rem;
  text-align: center;
  text-justify: auto;
}

.who-center {
  max-width: 760px;
  margin: 42px auto 40px;
  text-align: center;
}

.who-center p {
  font-size: 1.18rem;
  font-weight: 600;
}

.who-center strong {
  display: block;
  margin-top: 8px;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.who-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 70px;
}

.who-value {
  text-align: center;
}

.who-value img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 999px;
  margin: 0 auto 22px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

.who-value h4 {
  margin: 0 0 12px 0;
  font-family: var(--font-title);
  font-size: 30px;
  line-height: 1.1;
  color: #fff;
}

.who-value p {
  color: rgba(255, 250, 245, 0.92);
}

.who-founder {
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
}

.who-founder-content {
  text-align: center;
}

.who-founder-quote {
  color: rgba(255, 250, 245, 0.92);
}

.who-founder-quote p {
  margin-bottom: 16px;
}

.who-founder-sign {
  margin-top: 26px;
  text-align: center;
  font-family: var(--font-title);
  font-size: 34px;
  color: #fff;
}

/* ========================= FAQ ========================= */

.faq {
  background: var(--primary-dark);
}

.faq .section-title {
  color: #fff;
}

.faq .section-subtitle {
  color: rgba(255, 255, 255, 0.82);
}

.faq-list {
  background: rgba(255, 250, 245, 0.96);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item + .faq-item {
  border-top: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 22px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  color: var(--primary-dark);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.faq-q:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(141, 106, 61, 0.35);
}

.faq-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--primary);
  transform: translate(-50%, -50%);
}

.faq-icon::before {
  width: 100%;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 100%;
}

.faq-q[aria-expanded="true"] .faq-icon::after {
  opacity: 0;
}

.faq-a {
  padding: 0 22px 20px;
  color: var(--text);
}

.faq-a a {
  color: inherit;
}

/* ========================= LOCATION ========================= */

.meet-location {
  padding: 0;
  background: var(--surface-2);
}

.meet-location-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.5fr;
  min-height: 540px;
  align-items: stretch;
}

.meet-location-photo {
  margin: 0;
  height: 100%;
}

.meet-location-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.meet-location-content {
  background: var(--surface-2);
  padding: 70px 44px;
  display: flex;
  align-items: center;
}

.meet-location-inner {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 220px;
  gap: 42px;
  align-items: center;
}

.meet-location-title {
  margin: 0 0 18px 0;
  font-size: clamp(36px, 5vw, 62px);
}

.meet-location-address {
  margin: 0 0 18px 0;
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-dark);
}

.meet-location-hours {
  margin: 0 0 18px 0;
  font-size: 0.96rem;
  line-height: 1.5;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
}

.meet-location-desc {
  color: var(--text);
}

.meet-location-list {
  margin: 0 0 26px 0;
  padding: 0;
  list-style: none;
}

.meet-location-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  color: var(--text);
}

.meet-location-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 700;
}

.meet-location-map {
  margin: 0;
  width: 100%;
  max-width: 220px;
  justify-self: end;
}

.meet-location-map img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 28px rgba(73, 51, 28, 0.12);
}

/* ========================= FORM ========================= */

.form-section {
  background: transparent;
}

.form-title {
  text-align: center;
  font-size: clamp(34px, 4vw, 56px);
  margin-bottom: 24px;
}

.contact__form {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 28px;
  background: var(--primary);
  border: 1px solid rgba(73, 51, 28, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form__grid label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form__grid .full {
  grid-column: 1 / -1;
}

.field {
  width: 100%;
  border: 1px solid rgba(73, 51, 28, 0.14);
  padding: 14px 15px;
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 245, 0.96);
  color: var(--primary-dark);
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition:
    border-color 0.18s var(--ease),
    box-shadow 0.18s var(--ease);
}

.field:focus {
  border-color: rgba(220, 192, 162, 0.95);
  box-shadow: 0 0 0 4px rgba(220, 192, 162, 0.24);
}

.field--textarea {
  resize: vertical;
  min-height: 150px;
}

.contact__form .btn {
  display: inline-flex;
  margin: 1.5rem auto 0;
}

.form__note {
  margin: 14px 0 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

/* ========================= GALLERY ========================= */

.insta {
  padding: 56px 0 34px;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.insta-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 26px rgba(73, 51, 28, 0.08);
}

/* ========================= FOOTER ========================= */

.footer {
  padding: 28px 0 0;
  background: rgba(255, 250, 245, 0.86);
  border-top: 1px solid var(--line);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: rgba(73, 51, 28, 0.78);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--primary-dark);
}

.footer-bottom {
  margin-top: 18px;
  padding: 14px 0 22px;
  border-top: 1px solid var(--line-soft);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(73, 51, 28, 0.64);
  font-size: 12px;
}

/* ========================= MODAL ========================= */

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1000;
}

.modal.is-open {
  display: block;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(73, 51, 28, 0.58);
}

.modal__panel {
  position: relative;
  width: min(760px, 92%);
  margin: 8vh auto;
  padding: 26px 22px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: 0 32px 90px rgba(73, 51, 28, 0.22);
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--primary-dark);
  cursor: pointer;
  font-size: 18px;
}

.modal__title {
  margin: 0 0 14px 0;
  font-size: 42px;
}

.modal__text,
.modal__list {
  color: var(--text);
}

.modal__list {
  margin: 12px 0 18px 18px;
  padding: 0;
}

.modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ========================= RESPONSIVE ========================= */

@media (max-width: 1100px) {
  .nav {
    gap: 24px;
  }

  .site-header.is-scrolled .nav {
    gap: 20px;
  }

  .services-editorial {
    grid-template-columns: 1fr 1fr;
  }

  .services-editorial-intro {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .services-editorial-text {
    max-width: none;
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 980px) {
  .header-shell,
  .site-header.is-scrolled .header-shell {
    grid-template-columns: 1fr auto;
    grid-template-areas: "logo burger";
    justify-items: stretch;
    align-items: center;
    padding: 14px 0;
  }

  .header-brand,
  .site-header.is-scrolled .header-brand {
    justify-content: flex-start;
  }

  .header-nav-wrap {
    display: none;
  }

  .header-mobile-toggle {
    grid-area: burger;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .burger {
    display: flex;
  }

  .logo img,
  .site-header.is-scrolled .logo img {
    height: 58px;
  }

  .who-values {
    grid-template-columns: 1fr;
  }

  .meet-location-grid {
    grid-template-columns: 1fr;
  }

  .meet-location-photo {
    min-height: 380px;
  }

  .meet-location-content {
    padding: 42px 24px;
  }

  .meet-location-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .meet-location-map {
    justify-self: start;
    max-width: 260px;
  }
}

@media (max-width: 760px) {
  .topbar-row {
    min-height: 48px;
  }

  .topbar-right .topbar-phone {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  .services-editorial {
    grid-template-columns: 1fr;
  }

  .service-tile {
    min-height: auto;
  }

  .who-panel {
    padding: 40px 22px 46px;
  }

  .form__grid {
    grid-template-columns: 1fr;
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-q {
    padding: 18px 16px;
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .faq-a {
    padding: 0 16px 18px;
  }

  .logo img,
  .site-header.is-scrolled .logo img {
    height: 52px;
  }
}
@media (max-width: 760px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-links a {
    text-align: center;
  }

  .footer-bottom {
    text-align: center;
  }
}@media (max-width: 760px) {
  .topbar-cta {
    padding: 7px 10px;
    font-size: 9px;
    letter-spacing: 0.08em;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}