:root {
  --ink: #151310;
  --ink-soft: #34312d;
  --muted: #6c6761;
  --line: #e6dfd8;
  --cream: #fbf6f1;
  --cream-strong: #f4e9df;
  --paper: #ffffff;
  --surface-sand: #eee4da;
  --surface-peach: #f6d9c6;
  --surface-stone: #ddd6cf;
  --surface-ink: #1d1916;
  --orange: #ed5314;
  --orange-deep: #bd3a06;
  --orange-soft: #ffe1d0;
  --orange-action: #c44a1b;
  --orange-action-hover: #a83a12;
  --orange-action-deep: #8f2f0c;
  --green: #087f5b;
  --radius-sm: 18px;
  --radius-md: 26px;
  --radius-lg: 34px;
  --shadow-soft: 0 22px 64px rgba(34, 24, 17, .08);
  --shadow-card: 0 14px 34px rgba(34, 24, 17, .07);
  --shadow-premium: 0 30px 80px rgba(39, 25, 16, .16);
  --container: 1320px;
  --header-height: 96px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --font-body: "Inter", "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
  --font-display: "Manrope", "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open, body.anniversary-open { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }

button, input, textarea { font: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

button, [href] { cursor: pointer; touch-action: manipulation; }

address { font-style: normal; }

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: -.045em;
  line-height: 1.06;
}

h1 em, h2 em {
  color: var(--orange);
  font-style: normal;
}

:focus-visible {
  outline: 3px solid #1b66d1;
  outline-offset: 4px;
}

::selection { background: var(--orange-soft); color: var(--ink); }

.container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.section { padding-block: clamp(92px, 9vw, 142px); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 16px;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  width: 100%;
  padding: 0;
  background: transparent;
}

.navbar {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  width: 100%;
  height: var(--header-height);
  min-height: var(--header-height);
  padding: 3px clamp(22px, 4vw, 68px);
  margin: 0;
  border: 0;
  border-bottom: 1px solid rgba(112, 89, 73, .16);
  border-radius: 0;
  background: linear-gradient(135deg, rgba(255, 252, 249, .93), rgba(244, 237, 230, .86));
  box-shadow: 0 14px 38px rgba(39, 25, 16, .11), inset 0 1px 0 rgba(255, 255, 255, .9);
  backdrop-filter: blur(24px) saturate(1.18);
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: max-content;
  min-height: 44px;
}

.brand-header { min-height: 76px; padding-inline: 4px 12px; border-radius: 25px; transition: background .2s ease, transform .2s var(--ease); }
.brand-header:hover { background: transparent; transform: translateY(-2px); }
.brand-logo { width: clamp(150px, 12vw, 166px); height: auto; }
.nav-brands { display: flex; grid-column: 1; min-width: 0; align-items: center; justify-self: start; gap: clamp(8px, 1vw, 15px); }
.nav-brand-divider { width: 1px; height: 38px; flex: 0 0 1px; background: rgba(91, 72, 59, .22); }
.brand-partner { min-height: 68px; padding: 5px 8px; border-radius: 20px; transition: background .2s ease, transform .2s var(--ease); }
.brand-partner:hover { background: transparent; transform: translateY(-2px); }
.gotoner-logo { display: block; width: clamp(148px, 11.5vw, 176px); height: auto; }

.nav-panel { grid-column: 2; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.nav-links { display: flex; align-items: center; gap: clamp(28px, 3vw, 48px); padding: 0; margin: 0; list-style: none; }
.nav-mobile-contacts { display: none; }
.nav-mobile-phone { display: none; }

.nav-link {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border-radius: 0;
  background: transparent;
  color: #3e3731;
  font-size: 16px;
  font-weight: 800;
  box-shadow: none;
  transition: color .22s ease, background .22s ease, box-shadow .22s ease, transform .22s var(--ease);
}

.nav-link::after {
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: var(--orange-action);
  content: "";
  opacity: 0;
  transform: translateX(-50%) scaleX(.35);
  transition: opacity .2s ease, transform .2s ease;
}

.nav-link:hover { background: transparent; color: var(--orange-action); box-shadow: none; transform: translateY(-1px); }
.nav-link.active { background: transparent; color: var(--orange-action-deep); box-shadow: none; }
.nav-link.active::after { opacity: 1; transform: translateX(-50%) scaleX(1); }
.nav-link-disabled { cursor: pointer; opacity: 1; }

.nav-contact-actions {
  display: flex;
  grid-column: 3;
  align-items: center;
  justify-self: end;
  gap: 9px;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 62px;
  padding: 7px 12px 7px 7px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 21px;
  color: #fff;
  transition: background .22s ease, box-shadow .22s ease, transform .22s var(--ease);
}

.nav-phone-sales {
  background: var(--orange-action);
  box-shadow: 0 14px 30px rgba(137, 45, 11, .22);
}

.nav-phone-service {
  background: #4f4b47;
  box-shadow: 0 14px 30px rgba(40, 37, 34, .2);
}

.nav-phone > svg { width: 40px; height: 40px; padding: 10px; border-radius: 13px; background: rgba(255, 255, 255, .13); fill: none; stroke: #fff; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.nav-phone-copy { display: grid; line-height: 1.1; }
.nav-phone-copy small { margin-bottom: 5px; color: rgba(255, 255, 255, .64); font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.nav-phone-copy strong { font-size: 12px; letter-spacing: -.01em; white-space: nowrap; }
.nav-phone:hover { transform: translateY(-2px); }
.nav-phone-sales:hover { background: var(--orange-action-hover); box-shadow: 0 18px 38px rgba(137, 45, 11, .28); }
.nav-phone-service:hover { background: #3f3c39; box-shadow: 0 18px 38px rgba(40, 37, 34, .27); }

.menu-toggle {
  display: none;
  grid-column: 3;
  width: 52px;
  height: 52px;
  padding: 12px;
  place-items: center;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 17px;
  background: linear-gradient(145deg, var(--orange-action), var(--orange-action-deep));
  box-shadow: 0 10px 24px rgba(112, 39, 12, .22);
}

.menu-toggle > span:not(.sr-only) { display: block; width: 23px; height: 2px; margin: 3px 0; border-radius: 99px; background: #fff; transition: transform .25s ease, opacity .2s ease; }
.menu-toggle > span:nth-of-type(3) { width: 16px; margin-left: auto; background: #ffd1bd; }
.menu-toggle[aria-expanded="true"] > span:nth-of-type(2) { transform: translateY(5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-of-type(3) { opacity: 0; }
.menu-toggle[aria-expanded="true"] > span:nth-of-type(4) { transform: translateY(-5px) rotate(-45deg); }

/* Shared elements */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: #5d5751;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span { width: 28px; height: 2px; flex: 0 0 28px; border-radius: 99px; background: var(--orange); }
.eyebrow-light { color: rgba(255, 255, 255, .73); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.button svg, .text-link svg { width: 20px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; transition: transform .2s ease; }
.button:hover, .text-link:hover { transform: translateY(-2px); }
.button:hover svg, .text-link:hover svg { transform: translateX(4px); }
.button-primary, .button-ghost, .button-light { border-color: rgba(121, 39, 9, .18); background: var(--orange-action); color: #fff; box-shadow: 0 14px 28px rgba(137, 45, 11, .24); }
.button-primary:hover, .button-ghost:hover, .button-light:hover { border-color: transparent; background: var(--orange-action-hover); color: #fff; box-shadow: 0 18px 36px rgba(113, 35, 8, .29); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: #a93406;
  font-size: 14px;
  font-weight: 850;
  transition: color .2s ease, transform .2s ease;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  align-items: end;
  gap: clamp(38px, 7vw, 110px);
  margin-bottom: 58px;
}

.section-heading h2, .story-heading h2, .center-heading h2, .request-info h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
}

.section-heading > p { max-width: 520px; margin: 0; color: var(--muted); }
.compact-heading h2 { font-size: clamp(38px, 4.3vw, 62px); }

/* Home hero */
.hero {
  width: 100%;
  height: calc(100vh - var(--header-height));
  height: calc(100svh - var(--header-height));
  overflow: hidden;
  background: #000;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.6);
}

/* Home sections */
.solutions {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 9% 5%, rgba(237, 83, 20, .12), transparent 25%), linear-gradient(145deg, #f7f2ed, #ebe3dc);
}
.solutions::before { position: absolute; top: 70px; right: -130px; width: 360px; height: 360px; border: 1px solid rgba(168, 84, 43, .16); border-radius: 50%; content: ""; }
.solutions .container { position: relative; z-index: 1; }
.solution-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(22px, 2.2vw, 34px); }
.solution-entry { display: flex; min-width: 0; flex-direction: column; }
.solution-choice-title { display: flex; min-height: 76px; align-items: center; gap: 13px; margin: 0 0 18px; color: var(--ink); font-size: clamp(22px, 2vw, 30px); line-height: 1.18; }
.solution-choice-title::before { width: 30px; height: 2px; flex: 0 0 30px; background: var(--orange-action); content: ""; }
.solution-card { position: relative; display: block; flex: 1; overflow: hidden; border: 1px solid #cdbbad; border-radius: var(--radius-lg); background: linear-gradient(155deg, #f3e8dd, #e7d8ca); color: inherit; text-decoration: none; box-shadow: var(--shadow-premium); cursor: pointer; transition: transform .35s var(--ease), box-shadow .35s ease, border-color .35s ease; }
.solution-entry:nth-child(2) .solution-card { border-color: #4d423b; background: linear-gradient(155deg, #2a2420, #151311); color: #fff; }
.solution-card:hover { border-color: rgba(237, 83, 20, .65); box-shadow: 0 38px 90px rgba(39, 25, 16, .22); transform: translateY(-10px); }
.solution-card:focus-visible { outline: 3px solid var(--orange-action); outline-offset: 5px; }
.solution-media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; border-radius: calc(var(--radius-lg) - 1px) calc(var(--radius-lg) - 1px) var(--radius-md) var(--radius-md); }
.solution-media::after { position: absolute; inset: 42% 0 0; background: linear-gradient(transparent, rgba(18, 13, 10, .48)); content: ""; pointer-events: none; }
.solution-media-shop { background: #e4c8b5; }
.solution-media-service { background: #27211e; }
.solution-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .75s var(--ease), filter .75s ease; }
.solution-card:hover .solution-media img { filter: saturate(1.06) contrast(1.03); transform: scale(1.05); }
.card-index { position: absolute; z-index: 2; top: 20px; right: 20px; display: grid; width: 50px; height: 50px; place-items: center; border: 1px solid rgba(255, 255, 255, .75); border-radius: 16px; background: rgba(255, 249, 244, .82); color: var(--ink); font-size: 12px; font-weight: 900; backdrop-filter: blur(12px); }
.solution-domain { position: absolute; z-index: 2; right: 20px; bottom: 18px; left: 20px; width: max-content; max-width: calc(100% - 40px); padding: 8px 13px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .25); border-radius: 999px; background: rgba(17, 13, 10, .58); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .11em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; backdrop-filter: blur(10px); }
.solution-body { min-height: 320px; padding: clamp(30px, 4vw, 52px); }
.card-kicker { margin-bottom: 17px; color: #a93406; font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.solution-body h3 { max-width: 580px; margin-bottom: 18px; font-size: clamp(28px, 3vw, 42px); }
.solution-body > p:not(.card-kicker) { max-width: 560px; margin-bottom: 22px; color: #49423c; font-size: 16px; font-weight: 500; line-height: 1.6; }
.solution-entry:nth-child(2) .card-kicker { color: #ff9a68; }
.solution-entry:nth-child(2) .solution-body > p:not(.card-kicker) { color: rgba(255, 255, 255, .84); }
.solution-cta { position: relative; display: flex; width: 100%; min-height: 60px; align-items: center; justify-content: center; padding: 12px 58px; margin-top: 16px; border: 1px solid rgba(169, 52, 6, .28); border-radius: 18px; background: var(--orange-action); color: #fff; font-size: 14px; font-weight: 850; text-align: center; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.solution-cta svg { position: absolute; right: 24px; width: 21px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; transition: transform .2s ease; }
.solution-cta:hover { border-color: transparent; background: var(--orange-action-hover); color: #fff; transform: translateY(-3px); }
.solution-cta:hover svg { transform: translateX(4px); }
.solution-entry:nth-child(2) .solution-cta { border-color: #4d423b; background: linear-gradient(155deg, #2a2420, #151311); color: #ff9a68; }
.solution-entry:nth-child(2) .solution-cta:hover { border-color: var(--orange-action); background: var(--orange-action); color: #fff; }

.home-about { position: relative; overflow: hidden; background: radial-gradient(circle at 88% 0%, rgba(237, 83, 20, .09), transparent 25%), linear-gradient(145deg, #fff 0%, #faf7f4 58%, #f1ebe5 100%); color: var(--ink); }
.home-about.section { padding-block: clamp(60px, 5.5vw, 78px); }
.home-about::before { position: absolute; inset: 0; background-image: linear-gradient(rgba(62, 45, 34, .032) 1px, transparent 1px), linear-gradient(90deg, rgba(62, 45, 34, .032) 1px, transparent 1px); background-size: 72px 72px; content: ""; pointer-events: none; }
.home-about .container { position: relative; z-index: 1; }
.home-about-layout { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: clamp(45px, 9vw, 140px); }
.home-about-layout h2 { max-width: 720px; margin: 0; color: var(--ink); font-size: clamp(38px, 4.2vw, 58px); }
.home-about-copy > p { color: var(--ink-soft); font-size: clamp(17px, 1.4vw, 19px); line-height: 1.5; }
.home-about .eyebrow { color: #625b55; }
.home-about .text-link { color: #9f3005; }
.home-about-proof { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 6px; }
.home-about-proof span { display: inline-flex; min-height: 46px; align-items: center; gap: 7px; padding: 8px 14px; border: 1px solid #ddd1c6; border-radius: 14px; background: rgba(244, 237, 231, .9); color: #6d625a; font-size: 12px; }
.home-about-proof strong { color: var(--ink); font-size: 14px; }

.process-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 38px; }
.process-card { position: relative; min-height: 220px; padding: 28px; overflow: hidden; border: 1px solid rgba(81, 55, 38, .13); border-radius: var(--radius-md); background: #d7a27d; color: #1c1714; box-shadow: 0 20px 50px rgba(39, 25, 16, .12); transition: transform .3s var(--ease), box-shadow .3s ease; }
.process-card:nth-child(2) { background: linear-gradient(150deg, #39302a, #29231f); color: #fff; }
.process-card:nth-child(3) { background: linear-gradient(150deg, #e4dad0, #cfc3b8); }
.process-card::after { position: absolute; right: -70px; bottom: -90px; width: 220px; height: 220px; border: 1px solid currentColor; border-radius: 50%; content: ""; opacity: .12; }
.process-card:hover { box-shadow: 0 28px 60px rgba(39, 25, 16, .17); transform: translateY(-7px); }
.process-number { position: relative; z-index: 1; display: inline-grid; width: 42px; height: 42px; margin-bottom: 24px; place-items: center; border: 1px solid rgba(255, 255, 255, .28); border-radius: 14px; background: rgba(255, 255, 255, .48); color: #7c2706; font-size: 12px; font-weight: 900; }
.process-card:nth-child(2) .process-number { background: rgba(237, 83, 20, .2); color: #ff9a68; }
.process-card h3 { position: relative; z-index: 1; margin-bottom: 14px; font-size: 25px; }
.process-card p { position: relative; z-index: 1; margin: 0; color: rgba(25, 20, 17, .67); }
.process-card:nth-child(2) p { color: rgba(255, 255, 255, .62); }

.brand-strip { display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 1px; padding: 1px; margin-top: 16px; overflow: hidden; border: 1px solid #d7ccc2; border-radius: var(--radius-md); background: #d7ccc2; list-style: none; box-shadow: 0 14px 34px rgba(39, 25, 16, .09); }
.brand-strip li { display: grid; min-height: 62px; place-items: center; background: #f7f2ed; color: #514a44; font-size: 13px; font-weight: 850; }
.brand-strip li:nth-child(even) { background: #ede6df; }

/* Inner page hero */
.page-hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
}

.page-hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.page-hero-shade { position: absolute; inset: 0; }
.about-hero .page-hero-shade { background: linear-gradient(90deg, rgba(251, 248, 244, .99) 0%, rgba(251, 248, 244, .96) 40%, rgba(251, 248, 244, .52) 58%, rgba(251, 248, 244, .05) 78%); }
.contact-hero .page-hero-shade { background: linear-gradient(90deg, rgba(18, 15, 12, .97) 0%, rgba(18, 15, 12, .9) 42%, rgba(18, 15, 12, .42) 70%, rgba(18, 15, 12, .18) 100%); }
.contact-hero { color: #fff; }
.contact-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.page-hero-inner { position: relative; z-index: 2; display: flex; min-height: 660px; flex-direction: column; align-items: flex-start; justify-content: center; padding-block: 44px; }
.page-hero-inner > .eyebrow, .page-hero-inner > h1, .page-hero-inner > p, .page-hero-inner > .contact-hero-actions { max-width: 720px; }
.page-hero-inner h1 { margin: 0 0 20px; font-size: clamp(52px, 5.8vw, 84px); }
.about-hero .page-hero-inner h1 { font-size: clamp(50px, 5.5vw, 80px); }
.page-hero-inner > p:not(.eyebrow) { margin-bottom: 24px; color: #5f5953; font-size: clamp(18px, 1.6vw, 21px); }
.contact-hero .page-hero-inner > p:not(.eyebrow) { color: rgba(255, 255, 255, .72); }

.breadcrumbs { display: flex; min-height: 44px; align-items: center; gap: 9px; margin-bottom: 30px; color: #6b655f; font-size: 12px; font-weight: 750; line-height: 1; }
.breadcrumbs a, .breadcrumbs > span { display: inline-flex; min-height: 44px; align-items: center; }
.breadcrumbs a { text-decoration: underline; text-underline-offset: 4px; }
.breadcrumbs-light { color: rgba(255, 255, 255, .65); }

.page-hero-metrics { display: flex; gap: 12px; padding: 0; margin: 5px 0 0; list-style: none; }
.page-hero-metrics li { display: grid; min-width: 150px; padding: 18px 22px; border: 1px solid rgba(49, 40, 34, .12); border-radius: var(--radius-sm); background: rgba(255, 255, 255, .67); backdrop-filter: blur(10px); }
.page-hero-metrics strong { font-size: 19px; }
.page-hero-metrics span { color: var(--muted); font-size: 11px; }

/* About page */
.story { position: relative; display: flex; min-height: clamp(640px, 58vw, 720px); align-items: center; overflow: hidden; background: #171310; color: #fff; }
.story-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.015); }
.story-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15, 12, 10, .97) 0%, rgba(15, 12, 10, .88) 36%, rgba(15, 12, 10, .42) 62%, rgba(15, 12, 10, .08) 100%); }
.story-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: flex-start; padding-block: clamp(34px, 3.5vw, 46px); }
.story-panel { width: min(660px, 53%); padding: clamp(32px, 3.5vw, 44px); border: 1px solid rgba(255, 255, 255, .14); border-radius: var(--radius-lg); background: rgba(25, 20, 17, .78); box-shadow: 0 32px 85px rgba(0, 0, 0, .36); backdrop-filter: blur(18px); }
.story-panel::before { content: none; }
.story-panel h2 { max-width: 590px; margin: 0 0 18px; color: #fff; font-size: clamp(36px, 3.8vw, 56px); }
.story-panel p { margin-bottom: 14px; color: rgba(255, 255, 255, .84); font-size: 16px; font-weight: 400; line-height: 1.6; }
.story-panel .lead-copy { margin-bottom: 18px; color: #fff; font-size: clamp(19px, 1.55vw, 23px); line-height: 1.42; }
.story-panel p:last-child { margin-bottom: 0; }
.story.about-story { display: block; min-height: auto; padding-block: clamp(36px, 4vw, 60px); margin-top: clamp(24px, 2.4vw, 36px); overflow: hidden; background: linear-gradient(145deg, #211b17, #13110f); }
.about-story .about-story-inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(440px, .92fr); align-items: stretch; gap: clamp(28px, 3.5vw, 54px); padding-block: 0; }
.about-story-media { min-height: clamp(520px, 42vw, 640px); overflow: hidden; border: 0; border-radius: 0; box-shadow: none; }
.about-story .story-image { position: static; inset: auto; display: block; width: 100%; height: 100%; object-fit: cover; object-position: 62% center; transform: none; }
.about-story .story-panel { width: 100%; align-self: center; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; backdrop-filter: none; }
.home-story { min-height: clamp(610px, 55vw, 700px); background: #f8f4ef; color: var(--ink); }
.home-story .story-overlay { background: linear-gradient(90deg, rgba(255, 255, 255, .2) 0%, rgba(255, 255, 255, .08) 46%, rgba(255, 255, 255, 0) 72%); }
.home-story .story-panel { width: min(640px, 53%); border-color: rgba(91, 64, 45, .16); background: rgba(255, 255, 255, .94); box-shadow: 0 32px 80px rgba(72, 48, 31, .14); }
.home-story .story-panel h2, .home-story .story-panel .lead-copy { color: var(--ink); }
.home-story .story-panel p { color: #49423c; }
.home-story .eyebrow-light { color: #685f58; }
.home-story .story-link { margin-top: 9px; color: #b83c0b; }
.home-story .story-link:hover { color: #762705; }
.eyebrow-light { color: rgba(255, 255, 255, .63); }

.purpose { position: relative; overflow: hidden; background: radial-gradient(circle at 100% 0%, rgba(237, 83, 20, .11), transparent 28%), linear-gradient(145deg, #efe6de, #ded5cd); }
.purpose::before { position: absolute; top: 80px; left: -120px; width: 310px; height: 310px; border: 1px solid rgba(81, 53, 36, .12); border-radius: 50%; content: ""; }
.purpose .container { position: relative; z-index: 1; }
.purpose-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.purpose-card { position: relative; min-height: 460px; padding: clamp(36px, 5vw, 62px); overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-premium); transition: transform .3s var(--ease), box-shadow .3s ease; }
.purpose-card:hover { box-shadow: 0 38px 88px rgba(39, 25, 16, .23); transform: translateY(-7px); }
.purpose-card::after { position: absolute; right: -80px; bottom: -100px; width: 280px; height: 280px; border: 1px solid currentColor; border-radius: 50%; content: ""; opacity: .1; }
.purpose-mission { border: 1px solid #cbb8a7; background: linear-gradient(155deg, #f4e2d3, #e7d1c0); }
.purpose-vision { border: 1px solid #493b33; background: radial-gradient(circle at 90% 10%, rgba(237, 83, 20, .22), transparent 34%), linear-gradient(155deg, #27211d, #131110); color: #fff; }
.purpose-icon { display: grid; width: 56px; height: 56px; margin-bottom: 70px; place-items: center; border-radius: 18px; background: var(--orange-soft); color: #a93406; }
.purpose-icon svg { width: 27px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.purpose-vision .purpose-icon { background: rgba(237, 83, 20, .2); color: #ff7a38; }
.purpose-vision .card-kicker { color: #ff9a68; }
.purpose-card h3 { max-width: 560px; margin-bottom: 18px; font-size: clamp(29px, 3vw, 42px); }
.purpose-card > p:last-child { position: relative; z-index: 1; max-width: 590px; margin: 0; color: #4a423b; font-size: 16px; font-weight: 500; line-height: 1.6; }
.purpose-vision > p:last-child { color: rgba(255, 255, 255, .84); }

.principles { background: linear-gradient(180deg, #f4eee8, #e5ddd5); }
.center-heading { max-width: 820px; margin: 0 auto 58px; text-align: center; }
.center-heading .eyebrow { justify-content: center; }
.process-heading { max-width: 930px; }
.principles-intro { max-width: 720px; margin: 24px auto 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.principle-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; padding: 0; margin: 0; list-style: none; }
.principle-card { position: relative; display: grid; min-height: 390px; grid-template-columns: 52px minmax(0, 1fr); align-items: start; gap: 26px; padding: 40px; overflow: hidden; border: 1px solid #cbb5a3; border-radius: var(--radius-md); background: linear-gradient(150deg, #f0d5c3, #dfbfa8); box-shadow: var(--shadow-premium); transition: transform .3s var(--ease), box-shadow .3s ease; }
.principle-card:nth-child(even) { margin-top: 34px; }
.principle-card:nth-child(2) { border-color: #bcb2a9; background: linear-gradient(150deg, #ddd8d2, #c7bfb7); }
.principle-card:nth-child(3) { border-color: #cfbdad; background: linear-gradient(150deg, #f5e9df, #e5d3c5); }
.principle-card:nth-child(4) { border-color: #4c4038; background: radial-gradient(circle at 92% 10%, rgba(196, 74, 27, .2), transparent 34%), linear-gradient(150deg, #302923, #191613); color: #fff; }
.principle-card::before { position: absolute; top: 0; left: 40px; width: 64px; height: 3px; border-radius: 0 0 99px 99px; background: var(--orange-action); content: ""; }
.principle-card::after { position: absolute; right: -54px; bottom: -78px; width: 210px; height: 210px; border: 1px solid currentColor; border-radius: 50%; content: ""; opacity: .09; }
.principle-card:hover { box-shadow: 0 34px 70px rgba(39, 25, 16, .24); transform: translateY(-7px); }
.principle-number { position: relative; z-index: 1; display: grid; width: 52px; height: 52px; place-items: center; border: 1px solid rgba(108, 48, 19, .17); border-radius: 16px; background: rgba(255, 255, 255, .42); color: #8c2d08; font-size: 12px; font-weight: 900; }
.principle-card > div { position: relative; z-index: 1; }
.principle-card .card-kicker { margin: 2px 0 12px; color: #9d3510; font-size: 11px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.principle-card h3 { margin-bottom: 15px; font-size: clamp(27px, 2.5vw, 36px); }
.principle-card > div > p:not(.card-kicker) { margin: 0; color: #443d37; font-size: 16px; font-weight: 500; line-height: 1.6; }
.principle-points { display: grid; gap: 10px; padding: 20px 0 0; margin: 22px 0 0; border-top: 1px solid rgba(90, 60, 42, .14); list-style: none; }
.principle-points li { display: flex; align-items: flex-start; gap: 10px; color: #403933; font-size: 16px; font-weight: 500; line-height: 1.6; }
.principle-points li::before { width: 7px; height: 7px; flex: 0 0 7px; margin-top: 6px; border-radius: 50%; background: var(--orange-action); content: ""; }
.principle-card:nth-child(4) .principle-number { border-color: rgba(255, 255, 255, .14); background: rgba(196, 74, 27, .18); color: #ff9a68; }
.principle-card:nth-child(4) .card-kicker { color: #ff9a68; }
.principle-card:nth-child(4) > div > p:not(.card-kicker), .principle-card:nth-child(4) .principle-points li { color: rgba(255, 255, 255, .84); }
.principle-card:nth-child(4) .principle-points { border-color: rgba(255, 255, 255, .12); }

.cta-band { padding-block: 28px; background: #fff; }
.cta-band-inner { display: flex; min-height: 300px; align-items: center; justify-content: space-between; gap: 40px; padding: clamp(42px, 6vw, 76px); border-radius: var(--radius-lg); background: radial-gradient(circle at 90% 20%, rgba(237, 83, 20, .25), transparent 28%), var(--ink); color: #fff; }
.cta-band h2 { max-width: 760px; margin: 0; font-size: clamp(38px, 4.3vw, 62px); }

/* Contact page */
.contact-details { position: relative; overflow: hidden; background: radial-gradient(circle at 8% 30%, rgba(237, 83, 20, .11), transparent 24%), linear-gradient(145deg, #f1eae3, #ddd5ce); }
.contact-details::after { position: absolute; right: -110px; bottom: -140px; width: 360px; height: 360px; border: 1px solid rgba(73, 47, 31, .12); border-radius: 50%; content: ""; }
.contact-details .container { position: relative; z-index: 1; }
.contact-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.contact-card { position: relative; display: flex; min-height: 220px; align-items: flex-start; gap: 20px; padding: 34px; overflow: hidden; border: 1px solid #cdb8a7; border-radius: var(--radius-md); background: linear-gradient(150deg, #f2d9c7, #e8cbb5); box-shadow: var(--shadow-premium); transition: transform .3s var(--ease), border-color .3s ease, box-shadow .3s ease; }
.contact-card:nth-child(2) { border-color: #bfb5ac; background: linear-gradient(150deg, #ddd8d3, #c8c0b8); }
.contact-card:nth-child(3) { border-color: #4a3c34; background: radial-gradient(circle at 100% 0%, rgba(237, 83, 20, .2), transparent 34%), linear-gradient(150deg, #302823, #181513); color: #fff; }
.contact-card::before { position: absolute; right: 30px; bottom: 25px; color: currentColor; content: "↗"; font-size: 24px; opacity: .22; }
.contact-card::after { position: absolute; top: 0; right: 28px; left: 28px; height: 3px; border-radius: 0 0 99px 99px; background: var(--orange); content: ""; transform: scaleX(.45); transform-origin: left; transition: transform .3s var(--ease); }
.contact-card:hover { border-color: rgba(237, 83, 20, .68); box-shadow: 0 34px 76px rgba(39, 25, 16, .23); transform: translateY(-8px); }
.contact-card:hover::after { transform: scaleX(1); }
.contact-card-icon { display: grid; width: 52px; height: 52px; flex: 0 0 52px; place-items: center; border-radius: 17px; background: var(--orange-soft); color: #a93406; }
.contact-card-icon svg { width: 25px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.contact-card > span:last-child { display: grid; min-width: 0; }
.contact-card small { margin-bottom: 10px; color: var(--muted); font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.contact-card strong { overflow-wrap: anywhere; font-size: clamp(17px, 1.45vw, 21px); }
.contact-card em { margin-top: 22px; color: #4d4640; font-size: 16px; font-style: normal; font-weight: 500; line-height: 1.6; }
.contact-card:nth-child(3) .contact-card-icon { background: rgba(237, 83, 20, .18); color: #ff9a68; }
.contact-card:nth-child(3) small, .contact-card:nth-child(3) em { color: rgba(255, 255, 255, .84); }

.request-section { position: relative; isolation: isolate; overflow: hidden; padding-block: clamp(48px, 4vw, 64px); background: #151310; }
.request-section::before { position: absolute; z-index: -2; inset: -10px; background: url("assets/aysoft-servis-form-bg-v2.webp") center / cover no-repeat; content: ""; filter: blur(2px) saturate(.65) contrast(.92); opacity: .68; pointer-events: none; transform: scale(1.015); }
.request-section::after { position: absolute; z-index: -1; inset: 0; background: rgba(21, 19, 16, .28); content: ""; pointer-events: none; }
.request-section .container { position: relative; z-index: 1; }
.request-layout { display: grid; grid-template-columns: minmax(0, .78fr) minmax(520px, 1.22fr); align-items: stretch; gap: clamp(42px, 7vw, 102px); }
.request-info { position: relative; display: flex; min-height: 100%; flex-direction: column; justify-content: center; padding: clamp(26px, 3vw, 38px); border: 1px solid rgba(255, 255, 255, .42); border-radius: var(--radius-lg); background: rgba(241, 226, 213, .92); color: var(--ink); box-shadow: 0 38px 90px rgba(0, 0, 0, .3); backdrop-filter: blur(16px); }
.request-info h2 { color: var(--ink); }
.request-info .eyebrow { color: var(--muted); }
.request-info > p:not(.eyebrow) { max-width: 570px; color: #49433e; font-size: 16px; font-weight: 500; line-height: 1.6; }

.contact-form { padding: clamp(26px, 3vw, 38px); border: 1px solid rgba(255, 255, 255, .42); border-radius: var(--radius-lg); background: rgba(241, 226, 213, .92); box-shadow: 0 38px 90px rgba(0, 0, 0, .3); backdrop-filter: blur(16px); }
.form-heading { display: flex; align-items: start; justify-content: space-between; gap: 24px; margin-bottom: 25px; }
.form-heading span { font-size: 24px; font-weight: 850; letter-spacing: -.035em; }
.form-heading p { max-width: 260px; margin: 0; color: var(--muted); font-size: 12px; text-align: right; }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.field { display: grid; gap: 8px; margin-bottom: 13px; }
.field label { color: #49433e; font-size: 12px; font-weight: 800; }
.field label span { color: var(--muted); font-weight: 500; }
.field input, .field textarea { width: 100%; min-height: 50px; padding: 11px 15px; border: 1px solid #ad9a89; border-radius: 15px; background: rgba(255, 250, 246, .94); color: var(--ink); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .75); transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.field textarea { min-height: 118px; resize: vertical; }
.field input:hover, .field textarea:hover { border-color: #8f8176; background: #fffaf6; }
.field input:focus, .field textarea:focus { border-color: #1b66d1; outline: 0; box-shadow: 0 0 0 3px rgba(27, 102, 209, .15); }
.form-submit { width: 100%; margin-top: 3px; border: 0; }
.form-status { min-height: 24px; margin: 13px 0 0; color: #5f5953; font-size: 13px; text-align: center; }

.location-section { width: 100%; padding: 0; background: var(--ink); }
.location-map-wrap { position: relative; width: 100%; min-height: clamp(620px, 46vw, 760px); overflow: hidden; background: #d8d5d0; }
.location-map-frame { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; border: 0; }
.location-map-frame[hidden] { display: none; }
.location-map-placeholder {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  align-items: center;
  justify-items: end;
  padding: clamp(32px, 6vw, 96px);
  background:
    radial-gradient(circle at 82% 50%, rgba(237, 83, 20, .13), transparent 28%),
    linear-gradient(135deg, #eee5dd, #d8d0c9);
}
.location-map-placeholder[hidden] { display: none; }
.location-map-placeholder-card {
  width: min(410px, 100%);
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(62, 45, 33, .15);
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 249, .93);
  box-shadow: var(--shadow-premium);
}
.location-map-placeholder-card svg { width: 34px; margin-bottom: 20px; fill: none; stroke: var(--orange); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.location-map-placeholder-card h2 { margin-bottom: 14px; font-size: 28px; }
.location-map-placeholder-card p { margin-bottom: 22px; color: #5d554e; font-size: 16px; line-height: 1.65; }
.location-map-placeholder-card .button { width: 100%; border: 0; }
.location-map-panel { position: absolute; z-index: 2; top: 50%; left: clamp(22px, 6vw, 116px); width: min(430px, calc(100% - 44px)); padding: clamp(38px, 5vw, 64px); border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--radius-lg); background: rgba(18, 15, 12, .95); color: #fff; box-shadow: 0 28px 80px rgba(21, 14, 9, .28); backdrop-filter: blur(14px); transform: translateY(-50%); }
.location-map-panel::after { position: absolute; top: 0; right: 32px; left: 32px; height: 3px; border-radius: 0 0 99px 99px; background: var(--orange); content: ""; }
.location-map-panel h2 { margin-bottom: 24px; font-size: clamp(40px, 4.3vw, 62px); }
.location-map-panel address { margin-bottom: 30px; color: rgba(255, 255, 255, .68); font-size: 16px; line-height: 1.75; }

/* Footer */
.site-footer {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0;
  border-top: 5px solid var(--orange);
  background: #151310;
  color: #fff;
}

.site-footer .container { width: min(calc(100% - 48px), 1370px); }

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr .9fr 1fr 1.15fr;
  padding-block: clamp(58px, 5.2vw, 78px) clamp(46px, 4.3vw, 64px);
}

.footer-main > * { min-width: 0; }
.footer-main > * + * {
  padding-left: clamp(34px, 3.7vw, 58px);
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.footer-summary {
  display: flex;
  align-items: center;
  padding-right: clamp(34px, 4vw, 62px);
}

.footer-brand {
  display: flex;
  width: min(292px, 100%);
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  background: transparent;
  box-shadow: none;
  transition: transform .22s var(--ease);
}

.footer-brand:hover {
  box-shadow: none;
  transform: translateY(-3px);
}

.footer-logo { width: 255px; max-width: 100%; height: auto; }
.footer-anniversary {
  display: flex;
  width: 255px;
  max-width: 100%;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-top: -5px;
  color: #d8d2cd;
  font-size: 18px;
  font-weight: 750;
  letter-spacing: .16em;
  line-height: 1;
  text-transform: uppercase;
}
.footer-anniversary strong {
  color: var(--orange);
  font-size: 24px;
  font-weight: 850;
  letter-spacing: .04em;
}

.footer-column { display: flex; align-items: flex-start; flex-direction: column; }
.footer-heading {
  margin: 0 0 16px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -.02em;
  line-height: 1.3;
}

.footer-link {
  position: relative;
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  min-height: 44px;
  align-items: center;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
  transition: color .2s ease, transform .2s ease;
}

.footer-link::before {
  width: 0;
  height: 2px;
  margin-right: 0;
  border-radius: 99px;
  background: var(--orange);
  content: "";
  transition: width .2s ease, margin .2s ease;
}

.footer-link:hover { color: #fff; transform: translateX(3px); }
.footer-link:hover::before { width: 13px; margin-right: 8px; }

.footer-connect {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.footer-contact-card {
  display: flex;
  width: 100%;
  max-width: 270px;
  min-height: 146px;
  flex-direction: column;
  justify-content: center;
  padding: 26px 32px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 26px;
  color: #fff;
  transition: border-color .2s ease, background .2s ease, transform .2s var(--ease);
}

.footer-contact-card:hover {
  border-color: rgba(237, 83, 20, .8);
  background: rgba(237, 83, 20, .08);
  transform: translateY(-3px);
}

.footer-contact-title {
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.2;
}

.footer-contact-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .9);
}

.footer-contact-phone svg {
  width: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.footer-contact-phone strong { font-size: 16px; font-weight: 600; white-space: nowrap; }

.footer-quick-actions {
  display: flex;
  width: 100%;
  max-width: 270px;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.footer-quick-actions a {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  color: rgba(255, 255, 255, .9);
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}

.footer-quick-actions a:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
  transform: translateY(-3px);
}

.footer-quick-actions svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.footer-bottom {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
}

.footer-copyright { font-size: 13px; letter-spacing: -.01em; }
.footer-bottom-actions, .footer-legal { display: flex; align-items: center; }
.footer-bottom-actions { gap: clamp(26px, 3vw, 48px); }
.footer-legal { gap: 22px; }

.footer-legal a, .footer-cookie-settings {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .02em;
  transition: color .2s ease;
}

.footer-legal a:hover, .footer-cookie-settings:hover { color: #fff; }

.footer-to-top {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(145deg, var(--orange), var(--orange-deep));
  color: #fff;
  box-shadow: 0 14px 30px rgba(157, 46, 4, .26);
  transition: filter .2s ease, transform .2s var(--ease);
}

.footer-to-top:hover { filter: brightness(1.08); transform: translateY(-3px); }
.footer-to-top svg { width: 23px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }

.anniversary-modal {
  position: fixed;
  z-index: 9500;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(21, 18, 16, .72);
  opacity: 0;
  backdrop-filter: blur(6px);
  transition: opacity .28s ease;
}

.anniversary-modal[hidden] { display: none; }
.anniversary-modal.is-visible { opacity: 1; }
.anniversary-panel {
  position: relative;
  width: min(100%, 720px);
  min-height: min(530px, calc(100vh - 48px));
  overflow: hidden;
  border: 12px solid #fff;
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 130, 74, .45), transparent 28%),
    radial-gradient(circle at 12% 82%, rgba(237, 83, 20, .25), transparent 34%),
    linear-gradient(138deg, #161311 0%, #28201b 52%, #c93b0d 100%);
  color: #fff;
  box-shadow: 0 36px 100px rgba(0, 0, 0, .42);
  transform: translateY(18px) scale(.97);
  transition: transform .34s var(--ease);
}

.anniversary-modal.is-visible .anniversary-panel { transform: translateY(0) scale(1); }
.anniversary-panel::before {
  position: absolute;
  width: 360px;
  height: 360px;
  border: 2px solid rgba(255, 255, 255, .09);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  transform: translate(-48%, 48%);
}
.anniversary-panel::after {
  position: absolute;
  top: -110px;
  right: -70px;
  width: 280px;
  height: 280px;
  border: 58px solid rgba(255, 255, 255, .06);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.anniversary-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 50%;
  background: rgba(24, 18, 15, .24);
  color: #fff;
  font-size: 31px;
  font-weight: 300;
  line-height: 1;
  transition: background .2s ease, transform .2s var(--ease);
}
.anniversary-close:hover { background: rgba(255, 255, 255, .15); transform: rotate(6deg); }
.anniversary-close:focus-visible { outline: 3px solid #fff; outline-offset: 4px; }
.anniversary-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 506px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 62px clamp(34px, 7vw, 72px) 42px;
  text-align: center;
}
.anniversary-brand {
  margin: 0 0 18px;
  color: #fff;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: .16em;
  line-height: 1.2;
  text-shadow: 0 5px 18px rgba(0, 0, 0, .3);
  text-transform: uppercase;
}
.anniversary-year {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 12px 0 18px;
  line-height: .78;
}
.anniversary-year strong {
  color: var(--orange);
  font-size: clamp(124px, 17vw, 184px);
  font-weight: 900;
  letter-spacing: -.11em;
  text-shadow: 0 16px 36px rgba(0, 0, 0, .28);
}
.anniversary-year span {
  margin: 0 0 12px 5px;
  color: #ffd3bf;
  font-size: clamp(34px, 5.4vw, 58px);
  font-style: italic;
  font-weight: 850;
  letter-spacing: -.04em;
  transform: rotate(-5deg);
}
.anniversary-content > p:last-child {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
  line-height: 1.65;
}

.cookie-banner {
  position: fixed;
  z-index: 2000;
  right: 18px;
  bottom: 14px;
  left: 18px;
  display: grid;
  width: min(calc(100% - 36px), 1180px);
  max-height: calc(100vh - 28px);
  grid-template-columns: minmax(0, 1fr) 118px;
  align-items: center;
  gap: 18px;
  padding: 9px 10px 9px 13px;
  margin-inline: auto;
  overflow: auto;
  border: 1px solid rgba(32, 151, 85, .42);
  border-radius: 7px;
  background: rgba(255, 255, 255, .98);
  color: var(--ink);
  box-shadow: 0 8px 26px rgba(29, 72, 47, .16);
  backdrop-filter: blur(12px);
}

.cookie-banner[hidden], .cookie-preferences[hidden] { display: none; }
.cookie-banner-copy { max-width: 790px; }
.cookie-banner-copy p { margin: 0; color: #4f5b55; font-size: 13px; line-height: 1.65; }
.cookie-banner-copy a { color: #16884c; font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }

.cookie-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}

.cookie-action {
  min-height: 50px;
  padding: 10px 17px;
  border: 1px solid var(--orange-action);
  border-radius: 14px;
  background: #fff;
  color: var(--orange-action-deep);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition: background .2s ease, color .2s ease, transform .2s var(--ease);
}

.cookie-action:hover { background: var(--orange-action); color: #fff; transform: translateY(-2px); }
.cookie-banner .cookie-action {
  min-height: 31px;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  transform: none;
}
.cookie-banner .cookie-action-reject {
  border-color: #b9dfc8;
  background: #e9f7ef;
  color: #16884c;
}
.cookie-banner .cookie-action-reject:hover { background: #d9f1e3; color: #0d6f3b; }
.cookie-banner .cookie-action-accept {
  border-color: #15964f;
  background: #18a65a;
  color: #fff;
}
.cookie-banner .cookie-action-accept:hover { background: #138b4b; color: #fff; }

.cookie-preferences {
  position: fixed;
  z-index: 2100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(21, 19, 16, .68);
  backdrop-filter: blur(8px);
}

.cookie-preferences-panel {
  width: min(100%, 640px);
  max-height: calc(100vh - 40px);
  padding: clamp(24px, 4vw, 38px);
  overflow: auto;
  border: 1px solid rgba(77, 54, 38, .14);
  border-radius: 28px;
  background: #fffaf6;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .3);
}

.cookie-preferences-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 10px; }
.cookie-preferences-header h2 { margin: 0; font-size: clamp(28px, 4vw, 36px); }
.cookie-preferences-close { display: grid; width: 44px; height: 44px; flex: 0 0 44px; place-items: center; padding: 0; border: 1px solid #d8c9bd; border-radius: 14px; background: #fff; color: var(--ink); font-size: 25px; line-height: 1; }
.cookie-preferences-intro { margin-bottom: 24px; color: #5b544e; font-size: 15px; line-height: 1.65; }
.cookie-preference-list { display: grid; gap: 12px; }
.cookie-preference-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px; padding: 18px; border: 1px solid #ded1c6; border-radius: 18px; background: #fff; }
.cookie-preference-row strong { display: block; margin-bottom: 4px; font-size: 16px; }
.cookie-preference-row p { margin: 0; color: #6a625b; font-size: 13px; line-height: 1.5; }
.cookie-required { color: var(--green); font-size: 12px; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.cookie-toggle { position: relative; display: inline-flex; width: 54px; height: 32px; flex: 0 0 54px; }
.cookie-toggle input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.cookie-toggle span { position: absolute; inset: 0; border-radius: 999px; background: #cfc5bd; transition: background .2s ease; }
.cookie-toggle span::after { position: absolute; top: 4px; left: 4px; width: 24px; height: 24px; border-radius: 50%; background: #fff; box-shadow: 0 3px 9px rgba(0, 0, 0, .18); content: ""; transition: transform .22s var(--ease); }
.cookie-toggle input:checked + span { background: var(--orange); }
.cookie-toggle input:checked + span::after { transform: translateX(22px); }
.cookie-toggle input:focus-visible + span { outline: 3px solid #1b66d1; outline-offset: 3px; }
.cookie-preferences-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 24px; }
.cookie-preferences-note { margin: 18px 0 0; color: #756c65; font-size: 12px; line-height: 1.55; }
.cookie-preferences-note a { color: var(--orange-deep); font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }

.policy-page { background: var(--cream); }
.policy-hero { padding-block: clamp(82px, 9vw, 132px); background: linear-gradient(145deg, #f6ede5, #e7ddd4); }
.policy-hero-inner { max-width: 950px; }
.policy-hero h1 { max-width: 860px; margin-bottom: 22px; font-size: clamp(52px, 7vw, 88px); }
.policy-hero .policy-lead { max-width: 760px; margin-bottom: 18px; color: #544d47; font-size: clamp(18px, 1.8vw, 22px); line-height: 1.65; }
.policy-date { color: #756c65; font-size: 13px; font-weight: 700; }
.policy-content { padding-block: clamp(72px, 8vw, 120px); }
.policy-layout { display: grid; grid-template-columns: minmax(0, 1fr) 250px; align-items: start; gap: clamp(40px, 7vw, 96px); }
.policy-article { min-width: 0; }
.policy-article section { padding-bottom: 42px; margin-bottom: 42px; border-bottom: 1px solid #ddd2c9; }
.policy-article section:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: 0; }
.policy-article h2 { margin-bottom: 18px; font-size: clamp(30px, 3.5vw, 42px); }
.policy-article h3 { margin: 28px 0 12px; font-size: 22px; }
.policy-article p, .policy-article li { color: #514a44; font-size: 16px; line-height: 1.75; }
.policy-article ul { padding-left: 22px; }
.policy-article a { color: var(--orange-deep); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.policy-cookie-settings { padding: 0; border: 0; background: transparent; color: var(--orange-deep); font-size: inherit; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.policy-summary { position: sticky; top: calc(var(--header-height) + 24px); padding: 24px; border: 1px solid #d9ccc1; border-radius: 22px; background: #fff; box-shadow: var(--shadow-card); }
.policy-summary strong { display: block; margin-bottom: 12px; font-size: 16px; }
.policy-summary a { display: flex; min-height: 40px; align-items: center; color: #625a53; font-size: 14px; font-weight: 650; transition: color .2s ease; }
.policy-summary a:hover { color: var(--orange-deep); }
.policy-table-wrap { overflow-x: auto; border: 1px solid #d9ccc1; border-radius: 18px; background: #fff; }
.policy-table { width: 100%; min-width: 740px; border-collapse: collapse; }
.policy-table th, .policy-table td { padding: 16px; border-bottom: 1px solid #e5dad1; color: #514a44; font-size: 14px; line-height: 1.55; text-align: left; vertical-align: top; }
.policy-table th { background: #f2e7dd; color: var(--ink); font-size: 13px; }
.policy-table tr:last-child td { border-bottom: 0; }
.policy-contact { padding: 24px; border-left: 3px solid var(--orange); border-radius: 0 18px 18px 0; background: #fff; }
.policy-contact p:last-child { margin-bottom: 0; }

.whatsapp-contact {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: grid;
  justify-items: end;
  gap: 9px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .2s ease, transform .25s var(--ease);
}

body.footer-in-view .whatsapp-contact {
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
}
.whatsapp-options { display: grid; width: min(356px, calc(100vw - 30px)); gap: 9px; padding: 20px; border: 1px solid rgba(53, 67, 54, .13); border-radius: 28px; background: #fff; box-shadow: 0 18px 48px rgba(20, 27, 21, .18); animation: whatsapp-panel-in .22s var(--ease) both; }
.whatsapp-options[hidden] { display: none; }
.whatsapp-options-header { padding: 2px 2px 7px; }
.whatsapp-options-header h2 { margin: 0 0 7px; color: #293129; font-family: var(--font-body); font-size: 18px; font-weight: 750; letter-spacing: -.025em; line-height: 1.25; }
.whatsapp-options-header p { margin: 0; color: #7a817b; font-size: 11px; line-height: 1.45; }
.whatsapp-option { display: grid; min-height: 72px; grid-template-columns: 46px 1fr; align-items: center; gap: 12px; padding: 10px 15px 10px 10px; border: 1px solid #dce7d9; border-radius: 18px; background: #f4f8f2; color: #344035; transition: border-color .2s ease, background .2s ease, transform .2s var(--ease); }
.whatsapp-option-service { border-color: #b9dbb7; }
.whatsapp-option-icon { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 14px; background: #e4efe2; color: #47744c; }
.whatsapp-option-shop .whatsapp-option-icon { background: #ffebe1; color: var(--orange-action); }
.whatsapp-option-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.whatsapp-option > span:last-child { display: grid; min-width: 0; line-height: 1.25; }
.whatsapp-option strong { margin-bottom: 5px; font-size: 13px; letter-spacing: -.01em; }
.whatsapp-option small { color: #7f887f; font-size: 10px; font-weight: 500; letter-spacing: 0; }
.whatsapp-option:hover { border-color: #91c68e; background: #eef6ec; transform: translateY(-1px); }
.floating-instagram { display: inline-flex; width: 168px; min-width: 168px; height: 56px; align-items: center; justify-content: center; gap: 10px; padding: 0 18px 0 13px; border: 0; border-radius: 999px; background: linear-gradient(135deg, #833ab4 0%, #e1306c 48%, #f77737 100%); color: #fff; box-shadow: none; transition: filter .2s ease; }
.floating-instagram:hover { filter: brightness(.93); }
.floating-instagram svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.floating-instagram span { font-size: 13px; font-weight: 850; letter-spacing: -.01em; white-space: nowrap; }
.floating-whatsapp { display: inline-flex; width: 168px; min-width: 168px; height: 60px; align-items: center; justify-content: center; gap: 10px; padding: 0 19px 0 14px; border: 0; border-radius: 999px; background: #25d366; color: #fff; box-shadow: none; transition: background .2s ease; }
.floating-whatsapp:hover { background: #1ebe5d; transform: none; box-shadow: none; }
.floating-whatsapp svg { width: 30px; height: 30px; padding: 0; overflow: visible; border: 0; border-radius: 0; background: transparent; }
.floating-whatsapp .whatsapp-bubble { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2.1; }
.floating-whatsapp .whatsapp-phone { fill: currentColor; stroke: none; }
.floating-whatsapp span { font-size: 13px; font-weight: 850; letter-spacing: -.01em; white-space: nowrap; }
.floating-whatsapp[aria-expanded="true"] { background: #1ebe5d; }
@keyframes whatsapp-panel-in { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* Motion and page transitions */
.page-wipe { position: fixed; z-index: 9998; inset: 0; pointer-events: none; background: var(--orange); transform: translateY(-100%); }
.js.page-entering .page-wipe { animation: wipe-away .68s var(--ease) both; }
.js.page-leaving .page-wipe { animation: wipe-in .38s var(--ease) both; }
@keyframes wipe-away { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
@keyframes wipe-in { 0% { transform: translateY(100%); } 100% { transform: translateY(0); } }

.js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .72s var(--ease), transform .72s var(--ease); }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  :root { --header-height: 96px; }
  .navbar { min-height: 96px; padding-inline: 24px; }
  .brand-header { min-height: 76px; }
  .brand-logo { width: 138px; }
  .brand-partner { min-height: 62px; padding-inline: 5px; }
  .gotoner-logo { width: 138px; }
  .nav-links { gap: 16px; }
  .nav-link { padding-inline: 2px; font-size: 14.5px; }
  .nav-contact-actions { gap: 6px; }
  .nav-phone { gap: 6px; min-height: 56px; padding: 6px 8px 6px 6px; border-radius: 18px; }
  .nav-phone > svg { width: 34px; height: 34px; padding: 8px; border-radius: 11px; }
  .nav-phone-copy small { margin-bottom: 4px; font-size: 7px; }
  .nav-phone-copy strong { font-size: 10.5px; }
  .brand-strip { grid-template-columns: repeat(4, 1fr); }
  .story-panel { width: min(680px, 61%); }
  .request-layout { grid-template-columns: .8fr 1.2fr; gap: 45px; }
  .contact-card-grid { grid-template-columns: 1fr 1fr; }
  .contact-card:last-child { grid-column: 1 / -1; }
  .footer-main { grid-template-columns: .9fr 1fr 1fr; }
  .footer-summary {
    grid-column: 1 / -1;
    justify-content: center;
    padding: 0 0 44px;
    margin-bottom: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }
  .footer-main > .footer-column:first-of-type { padding-left: 0; border-left: 0; }
}

@media (max-width: 960px) {
  :root { --header-height: 80px; }
  .site-header { padding: 0; }
  .navbar { grid-template-columns: 1fr auto; width: 100%; min-height: 80px; padding: 4px 14px; border-radius: 0; }
  .brand-header { min-height: 62px; padding-inline: 0 8px; }
  .brand-logo { width: 126px; }
  .nav-brands { gap: 7px; }
  .nav-brand-divider { height: 32px; }
  .brand-partner { min-height: 54px; padding: 3px 4px; }
  .gotoner-logo { width: 124px; }
  .menu-toggle { display: block; grid-column: 2; }
  .nav-contact-actions { display: none; }
  body.nav-open::after { position: fixed; z-index: 950; inset: 0; background: rgba(19, 15, 12, .48); content: ""; backdrop-filter: blur(3px); }
  .nav-panel { position: absolute; z-index: 1001; top: calc(100% + 8px); right: 0; left: 0; display: block; grid-column: 1 / -1; width: auto; padding: 10px; border: 1px solid rgba(99, 75, 59, .18); border-radius: 27px; background: linear-gradient(145deg, rgba(255, 252, 249, .98), rgba(236, 226, 217, .97)); box-shadow: 0 30px 75px rgba(25, 17, 12, .28), inset 0 1px 0 #fff; opacity: 0; pointer-events: none; transform: translateY(-13px) scale(.98); transform-origin: top center; transition: opacity .22s ease, transform .25s var(--ease); }
  .nav-panel.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-links { display: grid; gap: 8px; }
  .nav-link { min-height: 56px; justify-content: start; padding-inline: 20px; font-size: 16px; }
  .nav-link::after { display: none; }
  .nav-mobile-contacts { display: grid; gap: 8px; margin-top: 8px; }
  .nav-mobile-phone { position: relative; display: grid; min-height: 68px; grid-template-columns: 1fr auto 38px; align-items: center; gap: 10px; padding: 10px 12px 10px 18px; border-radius: 20px; color: #fff; }
  .nav-mobile-sales { background: var(--orange-action); box-shadow: 0 15px 32px rgba(137, 45, 11, .22); }
  .nav-mobile-service { background: #4f4b47; box-shadow: 0 15px 32px rgba(40, 37, 34, .2); }
  .nav-mobile-phone span { color: rgba(255, 255, 255, .55); font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
  .nav-mobile-phone strong { font-size: 14px; white-space: nowrap; }
  .nav-mobile-phone svg { width: 38px; height: 38px; padding: 9px; border-radius: 13px; background: rgba(255, 255, 255, .13); fill: none; stroke: #fff; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
}

@media (max-width: 820px) {
  :root { --header-height: 80px; }
  .container { width: min(calc(100% - 36px), var(--container)); }
  .section { padding-block: 82px; }
  .site-header { padding: 0; }
  .navbar { grid-template-columns: 1fr auto; width: 100%; min-height: 80px; padding: 4px 14px; border-radius: 0; }
  .brand-header { min-height: 62px; padding-inline: 0 8px; }
  .brand-logo { width: 126px; }
  .nav-brands { gap: 7px; }
  .nav-brand-divider { height: 32px; }
  .brand-partner { min-height: 54px; padding: 3px 4px; }
  .gotoner-logo { width: 124px; }
  .menu-toggle { display: block; grid-column: 2; }
  .nav-contact-actions { display: none; }
  body.nav-open::after { position: fixed; z-index: 950; inset: 0; background: rgba(19, 15, 12, .48); content: ""; backdrop-filter: blur(3px); }
  .nav-panel { position: absolute; z-index: 1001; top: calc(100% + 8px); right: 0; left: 0; display: block; grid-column: 1 / -1; width: auto; padding: 10px; border: 1px solid rgba(99, 75, 59, .18); border-radius: 27px; background: linear-gradient(145deg, rgba(255, 252, 249, .98), rgba(236, 226, 217, .97)); box-shadow: 0 30px 75px rgba(25, 17, 12, .28), inset 0 1px 0 #fff; opacity: 0; pointer-events: none; transform: translateY(-13px) scale(.98); transform-origin: top center; transition: opacity .22s ease, transform .25s var(--ease); }
  .nav-panel.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-links { display: grid; gap: 8px; }
  .nav-link { min-height: 56px; justify-content: start; padding-inline: 20px; font-size: 16px; }
  .nav-link::after { display: none; }
  .nav-mobile-contacts { display: grid; gap: 8px; margin-top: 8px; }
  .nav-mobile-phone { position: relative; display: grid; min-height: 68px; grid-template-columns: 1fr auto 38px; align-items: center; gap: 10px; padding: 10px 12px 10px 18px; border-radius: 20px; color: #fff; }
  .nav-mobile-sales { background: var(--orange-action); box-shadow: 0 15px 32px rgba(137, 45, 11, .22); }
  .nav-mobile-service { background: #4f4b47; box-shadow: 0 15px 32px rgba(40, 37, 34, .2); }
  .nav-mobile-phone span { color: rgba(255, 255, 255, .55); font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
  .nav-mobile-phone strong { font-size: 14px; white-space: nowrap; }
  .nav-mobile-phone svg { width: 38px; height: 38px; padding: 9px; border-radius: 13px; background: rgba(255, 255, 255, .13); fill: none; stroke: #fff; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }

  .section-heading, .home-about-layout, .request-layout { grid-template-columns: 1fr; gap: 35px; }
  .solution-grid, .purpose-grid, .principle-grid { grid-template-columns: 1fr; }
  .principle-card:nth-child(even) { margin-top: 0; }
  .process-grid { grid-template-columns: 1fr; margin-top: 52px; }
  .process-card { min-height: 240px; }
  .process-number { margin-bottom: 36px; }
  .story { min-height: 820px; align-items: flex-end; }
  .story-image { object-position: 68% center; }
  .story-overlay { background: linear-gradient(0deg, rgba(15, 12, 10, .98) 0%, rgba(15, 12, 10, .88) 48%, rgba(15, 12, 10, .16) 100%); }
  .story-inner { align-items: flex-end; justify-content: center; padding-block: 220px 58px; }
  .story-panel { width: 100%; max-width: 720px; }
  .story.about-story { min-height: auto; padding-block: 32px; }
  .about-story .about-story-inner { grid-template-columns: 1fr; gap: 24px; padding-block: 0; }
  .about-story-media { min-height: 440px; }
  .about-story .story-panel { width: 100%; max-width: none; }
  .home-story .story-panel { width: 100%; }
  .request-info { position: static; }
  .contact-card-grid { grid-template-columns: 1fr; }
  .contact-card:last-child { grid-column: auto; }

  .page-hero, .page-hero-inner { min-height: 600px; }
  .about-hero .page-hero-shade { background: linear-gradient(90deg, rgba(251, 248, 244, .99), rgba(251, 248, 244, .9) 55%, rgba(251, 248, 244, .36)); }
  .page-hero-image { object-position: 64% center; }
  .page-hero-metrics li { min-width: 130px; padding: 15px 18px; }
  .purpose-card { min-height: 390px; }
  .principle-card > span { margin-bottom: 0; }
  .cta-band-inner { align-items: flex-start; flex-direction: column; justify-content: center; }

  .location-map-wrap { display: flex; min-height: 0; flex-direction: column; }
  .location-map-frame { position: relative; inset: auto; order: 2; height: 520px; flex: 0 0 520px; }
  .location-map-placeholder { position: relative; inset: auto; order: 2; min-height: 520px; justify-items: center; padding: 42px 24px; }
  .location-map-panel { position: relative; top: auto; left: auto; order: 1; width: 100%; max-width: none; padding: 54px 36px; border: 0; border-radius: 0; transform: none; }
  .location-map-panel::after { right: auto; left: 36px; width: 64px; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-summary { position: static; order: -1; }
  .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); padding-block: 54px 48px; }
  .footer-summary { grid-column: 1 / -1; }
  .footer-connect {
    grid-column: 1 / -1;
    align-items: flex-start;
    padding: 36px 0 0;
    margin-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    border-left: 0;
  }
  .footer-contact-card { max-width: none; min-height: 132px; }
  .footer-quick-actions { max-width: none; justify-content: flex-start; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 22px; }
  .footer-bottom-actions { width: 100%; justify-content: space-between; }
}

@media (max-width: 560px) {
  :root { --header-height: 76px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding-block: 70px; }
  .navbar { min-height: 76px; padding-inline: 10px 8px; border-radius: 0; }
  .brand-header { min-height: 58px; padding-right: 4px; }
  .brand-logo { width: 118px; }
  .nav-brands { gap: 5px; }
  .nav-brand-divider { height: 28px; }
  .brand-partner { min-height: 50px; padding-inline: 2px; }
  .gotoner-logo { width: 110px; }
  .menu-toggle { width: 50px; height: 50px; border-radius: 16px; }
  .nav-panel { top: calc(100% + 7px); }
  .nav-mobile-phone { grid-template-columns: 1fr auto 36px; padding-left: 15px; }
  .nav-mobile-phone strong { font-size: 13px; }
  .contact-hero-actions { align-items: stretch; flex-direction: column; }
  .contact-hero-actions .button { width: 100%; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .center-heading h2, .request-info h2 { font-size: clamp(38px, 12vw, 52px); }
  .solution-media { height: 270px; }
  .solution-body { padding: 26px; }
  .solution-body { min-height: 0; }
  .solution-body h3 { font-size: 29px; }
  .home-about-layout h2 { font-size: 42px; }
  .process-card, .principle-card { padding: 28px; }
  .principle-card { min-height: 0; grid-template-columns: 1fr; gap: 22px; }
  .principle-card::before { left: 28px; }
  .principles-intro { font-size: 16px; }
  .brand-strip { grid-template-columns: repeat(2, 1fr); }
  .brand-strip li { min-height: 66px; }

  .page-hero, .page-hero-inner { min-height: 610px; }
  .page-hero-inner { justify-content: flex-end; padding-block: 62px 44px; }
  .page-hero-inner h1 { font-size: clamp(46px, 13.5vw, 64px); }
  .about-hero .page-hero-image { object-position: 73% center; }
  .about-hero .page-hero-shade { background: linear-gradient(0deg, rgba(251, 248, 244, 1) 0%, rgba(251, 248, 244, .97) 62%, rgba(251, 248, 244, .18) 100%); }
  .contact-hero .page-hero-image { object-position: 72% center; }
  .contact-hero .page-hero-shade { background: linear-gradient(0deg, rgba(18, 15, 12, .99) 0%, rgba(18, 15, 12, .94) 65%, rgba(18, 15, 12, .34) 100%); }
  .breadcrumbs { margin-bottom: 28px; }
  .page-hero-metrics { width: 100%; gap: 7px; }
  .page-hero-metrics li { min-width: 0; flex: 1; padding: 12px; }
  .page-hero-metrics strong { font-size: 15px; }
  .page-hero-metrics span { font-size: 9px; }

  .story { min-height: 780px; }
  .story-image { object-position: 72% center; }
  .story-inner { width: 100%; padding-block: 210px 48px; }
  .story-panel, .home-story .story-panel { width: calc(100% - 20px); padding: 30px 24px; border-radius: var(--radius-md); }
  .story.about-story { min-height: auto; padding-block: 24px; margin-top: 20px; }
  .about-story .about-story-inner { width: min(calc(100% - 28px), var(--container)); gap: 18px; padding-block: 0; }
  .about-story-media { min-height: 300px; border-radius: 0; }
  .about-story .story-panel { width: 100%; padding: 0; }
  .story-panel::before { margin-bottom: 24px; }
  .story-panel h2 { font-size: clamp(38px, 11.4vw, 54px); }
  .purpose-card { min-height: 0; padding: 30px; }
  .purpose-icon { margin-bottom: 45px; }
  .purpose-card h3 { font-size: 31px; }
  .cta-band { padding-block: 14px; }
  .cta-band-inner { width: calc(100% - 28px); min-height: 340px; padding: 34px 26px; }
  .contact-card { min-height: 170px; padding: 24px; }
  .contact-card-icon { width: 46px; height: 46px; flex-basis: 46px; }
  .contact-card strong { font-size: 16px; }
  .request-layout { gap: 38px; }
  .request-info { padding: 30px 24px; }
  .contact-form { padding: 24px 18px; border-radius: var(--radius-md); }
  .form-heading, .field-row { grid-template-columns: 1fr; }
  .form-heading { display: grid; }
  .form-heading p { text-align: left; }
  .location-map-panel { padding: 48px 22px; }
  .location-map-panel::after { left: 22px; }
  .location-map-frame { height: 460px; flex-basis: 460px; }
  .location-map-placeholder { min-height: 460px; padding: 30px 18px; }
  .location-map-placeholder-card { padding: 28px 24px; }
  .policy-hero { padding-block: 68px; }
  .policy-hero h1 { font-size: clamp(44px, 13vw, 62px); }
  .policy-content { padding-block: 64px; }
  .policy-article p, .policy-article li { font-size: 15px; }
  .footer-main { display: block; padding-block: 48px 42px; }
  .footer-main > * + * {
    padding: 30px 0 0;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    border-left: 0;
  }
  .footer-summary {
    justify-content: flex-start;
    padding: 0;
    margin: 0;
    border-bottom: 0;
  }
  .footer-brand { width: min(272px, 100%); }
  .footer-logo { width: 238px; }
  .footer-anniversary { width: 238px; }
  .footer-connect { align-items: stretch; }
  .footer-contact-card { padding-inline: 26px; }
  .footer-bottom { gap: 12px; }
  .footer-bottom-actions { align-items: flex-end; }
  .footer-legal { align-items: flex-start; flex-direction: column; gap: 0; }
  .footer-to-top { width: 54px; height: 54px; border-radius: 20px; }
  .site-footer .container { width: min(calc(100% - 28px), 1370px); }
  .anniversary-modal { padding: 12px; }
  .anniversary-panel { min-height: min(500px, calc(100vh - 24px)); border-width: 7px; border-radius: 25px; }
  .anniversary-close { top: 12px; right: 12px; width: 43px; height: 43px; font-size: 29px; }
  .anniversary-content { min-height: 486px; padding: 62px 22px 34px; }
  .anniversary-brand { margin-bottom: 14px; font-size: 12px; }
  .anniversary-year { margin-block: 18px 22px; }
  .anniversary-year strong { font-size: clamp(106px, 34vw, 132px); }
  .anniversary-year span { margin-bottom: 8px; font-size: clamp(34px, 11vw, 43px); }
  .anniversary-content > p:last-child { font-size: 14px; line-height: 1.55; }
  .cookie-banner { right: 8px; bottom: 8px; left: 8px; width: calc(100% - 16px); grid-template-columns: minmax(0, 1fr) 96px; gap: 10px; padding: 9px; border-radius: 7px; }
  .cookie-banner-copy p { font-size: 12px; line-height: 1.5; }
  .cookie-action { width: 100%; }
  .cookie-preferences { padding: 12px; }
  .cookie-preferences-panel { max-height: calc(100vh - 24px); padding: 24px 18px; border-radius: 22px; }
  .cookie-preference-row { grid-template-columns: 1fr; }
  .cookie-preferences-actions { grid-template-columns: 1fr; }
  .whatsapp-contact { right: 15px; bottom: 15px; }
  .whatsapp-options { width: min(350px, calc(100vw - 24px)); padding: 18px; border-radius: 26px; }
  .whatsapp-options-header h2 { font-size: 17px; }
  .whatsapp-option { min-height: 68px; grid-template-columns: 42px 1fr; padding: 9px 13px 9px 9px; }
  .whatsapp-option-icon { width: 42px; height: 42px; border-radius: 13px; }
  .floating-instagram { width: 164px; min-width: 164px; height: 54px; padding: 0 16px 0 12px; }
  .floating-instagram svg { width: 27px; height: 27px; }
  .floating-whatsapp { width: 164px; min-width: 164px; height: 58px; padding: 0 17px 0 13px; }
  .floating-whatsapp svg { width: 29px; height: 29px; }
}

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