:root {
  --ink: #072530;
  --ink-deep: #031a22;
  --ink-soft: #173d46;
  --teal: #0da895;
  --teal-bright: #55ddc6;
  --sea-glass: #bfeee5;
  --sand: #d8ad55;
  --paper: #f5f7f4;
  --white: #ffffff;
  --muted: #607078;
  --line: rgba(7, 37, 48, 0.13);
  --shadow: 0 24px 70px rgba(3, 26, 34, 0.14);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1240px;
  --header: 92px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink-deep);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Aptos", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--teal-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--ink-deep);
  background: var(--white);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.narrow {
  width: min(calc(100% - 48px), 820px);
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

.section-sm {
  padding: 84px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow.is-light {
  color: var(--teal-bright);
}

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

.display,
h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3.3rem, 7vw, 7.2rem);
  line-height: 0.95;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4.5vw, 4.8rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  line-height: 1.3;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  line-height: 1.65;
}

.text-large {
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  line-height: 1.5;
}

.muted {
  color: var(--muted);
}

.accent {
  color: var(--teal-bright);
  font-style: italic;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink-deep);
  background: var(--teal-bright);
}

.button-primary:hover {
  background: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  background: var(--teal);
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.button-outline:hover {
  color: var(--ink-deep);
  background: var(--white);
  border-color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-weight: 800;
}

.text-link::after {
  content: "↗";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translate(3px, -3px);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 220ms ease, height 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
body:not(.home) .site-header {
  height: 76px;
  background: rgba(3, 26, 34, 0.95);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand img {
  width: 220px;
  height: auto;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 26px;
}

.navigation a:not(.button) {
  position: relative;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.navigation a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--teal-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.navigation a:not(.button):hover,
.navigation a[aria-current="page"] {
  color: var(--white);
}

.navigation a:not(.button):hover::after,
.navigation a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  color: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.navigation .language-switcher a:not(.button) {
  padding: 6px 8px;
  color: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  font-size: 0.68rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

.navigation .language-switcher a:not(.button)::after {
  display: none;
}

.navigation .language-switcher a[aria-current="true"] {
  color: var(--ink-deep);
  background: var(--teal-bright);
}

.header-cta {
  min-height: 44px;
  padding-inline: 19px;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-deep);
}

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 26, 34, 0.96) 0%, rgba(3, 26, 34, 0.75) 42%, rgba(3, 26, 34, 0.18) 78%),
    linear-gradient(0deg, rgba(3, 26, 34, 0.75), transparent 45%);
}

.hero::after {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 58%;
  width: 1px;
  content: "";
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.3), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 80px;
  align-items: end;
  padding-top: 190px;
  padding-bottom: 78px;
}

.hero-copy {
  max-width: 870px;
}

.hero-copy .eyebrow {
  color: var(--teal-bright);
}

.hero-copy h1 {
  margin-bottom: 28px;
  max-width: 830px;
}

.hero-copy .lead {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.76);
}

.hero-note {
  padding: 24px 0 4px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.32);
}

.hero-note .label {
  display: block;
  margin-bottom: 10px;
  color: var(--teal-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.18;
}

.hero-note small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.58);
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 70svh;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-deep);
}

.page-hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(3, 26, 34, 0.97) 0%, rgba(3, 26, 34, 0.72) 55%, rgba(3, 26, 34, 0.28));
}

.page-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 180px;
  padding-bottom: 76px;
}

.page-hero h1 {
  max-width: 980px;
  margin-bottom: 28px;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
}

.page-hero .lead {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.74);
}

/* Overview and editorial layouts */
.intro-grid,
.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(54px, 9vw, 140px);
  align-items: start;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 58px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.editorial-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.editorial-copy p:last-child {
  margin-bottom: 0;
}

.image-frame {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.image-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  padding: 18px 20px;
  color: var(--white);
  background: rgba(3, 26, 34, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}

.image-caption strong,
.image-caption span {
  display: block;
}

.image-caption span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
}

/* Azorean editorial imagery */
.island-section {
  padding-top: 30px;
}

.island-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: end;
  margin-bottom: 54px;
}

.island-heading h2,
.island-heading .lead {
  margin-bottom: 0;
}

.island-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  gap: 22px;
}

.island-gallery-side {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.island-shot {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.island-shot-primary {
  min-height: 720px;
}

.island-shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.island-shot-primary img {
  object-position: center 52%;
}

.island-shot:hover img {
  transform: scale(1.025);
}

/* Cards */
.pillar-grid,
.value-grid,
.interest-grid,
.product-grid,
.partner-grid {
  display: grid;
  gap: 20px;
}

.pillar-grid {
  grid-template-columns: repeat(3, 1fr);
}

.pillar-card {
  position: relative;
  min-height: 410px;
  padding: 34px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: color 220ms ease, background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.pillar-card::after {
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 180px;
  height: 180px;
  content: "";
  border: 1px solid rgba(13, 168, 149, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(13, 168, 149, 0.06), 0 0 0 56px rgba(13, 168, 149, 0.03);
}

.pillar-card:hover {
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.pillar-number {
  display: block;
  margin-bottom: 100px;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
}

.pillar-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
}

.pillar-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.pillar-card:hover p {
  color: rgba(255, 255, 255, 0.68);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status::before {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(13, 168, 149, 0.12);
}

.status.future::before {
  background: var(--sand);
  box-shadow: 0 0 0 5px rgba(216, 173, 85, 0.14);
}

.value-grid {
  grid-template-columns: repeat(4, 1fr);
}

.value-card,
.interest-card,
.partner-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.value-card .index,
.interest-card .index {
  display: block;
  margin-bottom: 42px;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.value-card p,
.interest-card p,
.partner-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.interest-grid {
  grid-template-columns: repeat(2, 1fr);
}

.interest-card {
  min-height: 300px;
}

.interest-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 400;
}

.partner-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* Seablom feature */
.brand-feature {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.brand-feature::before {
  position: absolute;
  top: -260px;
  right: -180px;
  width: 620px;
  height: 620px;
  content: "";
  border: 1px solid rgba(85, 221, 198, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(85, 221, 198, 0.025), 0 0 0 160px rgba(85, 221, 198, 0.015);
}

.brand-grid {
  position: relative;
  display: block;
}

.brand-image {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: var(--ink);
}

.brand-image img {
  position: relative;
  width: 100%;
  height: auto;
}

.brand-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 26, 34, 0.08) 0%, rgba(3, 26, 34, 0.16) 38%, rgba(3, 26, 34, 0.84) 70%, var(--ink) 100%),
    linear-gradient(0deg, rgba(3, 26, 34, 0.28), transparent 36%);
}

.brand-copy {
  position: absolute;
  z-index: 3;
  inset: 0 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(48%, 760px);
  padding: clamp(54px, 7vw, 110px) clamp(32px, 7vw, 120px) clamp(54px, 7vw, 110px) clamp(40px, 6vw, 96px);
}

.brand-copy .lead {
  color: rgba(255, 255, 255, 0.68);
}

.product-grid {
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.product-visual {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ink-deep);
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.product-card:hover .product-visual img {
  transform: scale(1.035);
}

.product-copy {
  padding: 30px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-copy h3 {
  min-height: 62px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 400;
}

.product-copy p {
  min-height: 78px;
  color: var(--muted);
}

/* Dark sections and process */
.dark-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-deep);
}

.dark-section .lead,
.dark-section .muted {
  color: rgba(255, 255, 255, 0.66);
}

.origin-feature {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(54px, 8vw, 120px);
  align-items: center;
}

.origin-media {
  position: relative;
  min-height: 690px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.origin-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.origin-copy h2 {
  max-width: 760px;
}

.page-hero-media-azores {
  object-position: center 55%;
}

.contact-hero-media {
  object-position: center 55%;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 66px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.process-step {
  position: relative;
  padding: 32px 32px 12px 0;
}

.process-step:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.process-step:not(:first-child) {
  padding-left: 32px;
}

.process-step::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--teal-bright);
  border-radius: 50%;
}

.process-step:not(:first-child)::before {
  left: 32px;
}

.process-step span {
  display: block;
  margin-bottom: 46px;
  color: var(--teal-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}

.process-step p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
}

/* Timeline */
.timeline {
  position: relative;
  margin-top: 64px;
  padding-left: 34px;
}

.timeline::before {
  position: absolute;
  top: 8px;
  bottom: 10px;
  left: 6px;
  width: 1px;
  content: "";
  background: var(--line);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  padding-bottom: 46px;
}

.timeline-item::before {
  position: absolute;
  top: 8px;
  left: -32px;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 7px var(--paper);
}

.timeline-label {
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline-item p {
  margin-bottom: 0;
  color: var(--muted);
}

/* CTA */
.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(50px, 8vw, 92px);
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-lg);
}

.cta-panel::after {
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 470px;
  height: 470px;
  content: "";
  background: radial-gradient(circle, rgba(85, 221, 198, 0.25), transparent 68%);
}

.cta-panel h2,
.cta-panel p,
.cta-panel .button-row {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.15rem;
}

/* Contact */
.contact-card {
  padding: clamp(34px, 5vw, 60px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.contact-card + .contact-card {
  margin-top: 20px;
}

.contact-card .label {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card a.email {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.contact-card a.email:hover {
  color: var(--teal);
}

.legal-copy h2 {
  margin-top: 56px;
  font-family: "Aptos", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, 0.62);
  background: var(--ink-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.25fr;
  gap: 50px;
  padding: 76px 0 56px;
}

.footer-brand img {
  width: min(250px, 100%);
  height: auto;
  margin-bottom: 24px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  max-width: 350px;
}

.site-footer h3 {
  color: var(--white);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a:hover {
  color: var(--teal-bright);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
}

/* Motion */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .navigation {
    gap: 24px;
  }

  .header-cta {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr 240px;
    gap: 44px;
  }

  .value-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer-main {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-main > :last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 920px) {
  :root {
    --header: 76px;
  }

  .container,
  .narrow {
    width: min(calc(100% - 36px), var(--container));
  }

  .section {
    padding: 92px 0;
  }

  .menu-button {
    display: block;
  }

  .navigation {
    position: fixed;
    z-index: 99;
    top: calc(var(--header) - 1px);
    right: 18px;
    bottom: auto;
    left: auto;
    display: flex;
    width: min(calc(100% - 36px), 420px);
    max-height: calc(100svh - var(--header) - 18px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 22px 22px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: rgba(3, 26, 34, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top-color: rgba(255, 255, 255, 0.08);
    border-radius: 0 0 24px 24px;
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px) scale(0.985);
    transform-origin: top right;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    transition: opacity 180ms ease, transform 220ms ease, visibility 220ms ease;
  }

  .navigation.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .navigation a:not(.button) {
    padding: 13px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.25;
    text-transform: none;
  }

  .navigation a:not(.button)::after {
    display: none;
  }

  .navigation .button {
    margin-top: 26px;
  }

  .navigation .language-switcher {
    align-self: flex-start;
    margin-top: 16px;
  }

  .navigation .language-switcher a:not(.button) {
    padding: 7px 10px;
    border: 0;
    font-family: "Aptos", "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
  }

  .hero-content {
    display: block;
    padding-top: 170px;
    padding-bottom: 54px;
  }

  .hero::after {
    display: none;
  }

  .hero-note {
    max-width: 360px;
    margin-top: 54px;
  }

  .intro-grid,
  .split-grid,
  .contact-grid,
  .brand-grid,
  .island-heading,
  .origin-feature {
    grid-template-columns: 1fr;
  }

  .island-gallery {
    grid-template-columns: 1fr;
  }

  .island-shot-primary {
    min-height: 620px;
  }

  .island-gallery-side {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
  }

  .origin-media {
    min-height: 580px;
  }

  .pillar-grid,
  .product-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    min-height: 330px;
  }

  .pillar-number {
    margin-bottom: 56px;
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-image {
    min-height: 0;
  }

  .brand-image img {
    padding: 0;
  }

  .brand-image::after {
    background:
      linear-gradient(90deg, rgba(3, 26, 34, 0.05) 0%, rgba(3, 26, 34, 0.22) 34%, rgba(3, 26, 34, 0.9) 72%, var(--ink) 100%),
      linear-gradient(0deg, rgba(3, 26, 34, 0.34), transparent 42%);
  }

  .brand-copy {
    width: 56%;
    padding: 44px 30px 44px 42px;
  }

  .product-copy h3,
  .product-copy p {
    min-height: 0;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-main > :last-child {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  .brand img {
    width: 185px;
  }

  .page-hero {
    min-height: 76svh;
  }

  .page-hero .container {
    padding-top: 150px;
    padding-bottom: 52px;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .image-frame {
    min-height: 460px;
  }

  .island-section {
    padding-top: 8px;
  }

  .island-heading {
    margin-bottom: 38px;
  }

  .island-shot-primary {
    min-height: 540px;
  }

  .island-gallery-side {
    grid-template-columns: 1fr;
  }

  .island-gallery-side .island-shot {
    min-height: 390px;
  }

  .origin-media {
    min-height: 510px;
    border-radius: var(--radius-md);
  }

  .brand-image::after {
    background: linear-gradient(0deg, var(--ink) 0%, rgba(3, 26, 34, 0.3) 48%, transparent 76%);
  }

  .brand-copy {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: -86px;
    padding: 76px 24px 84px;
    background: linear-gradient(transparent, var(--ink) 84px);
  }

  .value-grid,
  .interest-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step,
  .process-step:not(:first-child) {
    padding: 30px 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .process-step::before,
  .process-step:not(:first-child)::before {
    left: 0;
  }

  .process-step span {
    margin-bottom: 24px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand,
  .footer-main > :last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
