:root {
  --cream: #efe6da;
  --green: #0a2800;
  --gold: #c8a95c;
  --green-soft: rgba(10, 40, 0, 0.72);
  --green-muted: rgba(10, 40, 0, 0.48);
  --line: rgba(10, 40, 0, 0.16);
  --card: rgba(255, 255, 255, 0.24);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--green);
  font-family: var(--sans);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top, rgba(200, 169, 92, 0.14), transparent 34%),
    linear-gradient(rgba(10, 40, 0, 0.022) 1px, transparent 1px);
  background-size: auto, 100% 9px;
  opacity: 0.72;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  display: block;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 88px;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 230px 1fr 190px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(239, 230, 218, 0.86);
  backdrop-filter: blur(18px);
  z-index: 20;
}

.brand img {
  width: 152px;
  height: auto;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
}

.menu-toggle span {
  width: 20px;
  height: 1px;
  background: var(--green);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header.is-open .menu-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.menu-panel {
  display: contents;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav a,
.header-cta,
.footer a {
  position: relative;
}

.nav a::after,
.header-cta::after,
.footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav a:hover::after,
.header-cta:hover::after,
.footer a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

main {
  overflow: hidden;
}

.section-line {
  border-bottom: 1px solid var(--line);
}

.hero {
  min-height: 100vh;
  padding: 184px 32px 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-top: 1px solid transparent;
}

.kicker,
.section-label,
.hero-meta {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.kicker {
  margin: 0 0 34px;
}

.hero h1,
.intro h2,
.centered h2,
.contact h2,
.marika-grid h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.hero h1 {
  max-width: 980px;
  font-size: clamp(70px, 10vw, 150px);
}

.hero h1 span,
em {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

.hero-copy {
  max-width: 650px;
  margin: 42px auto 0;
  color: var(--green-soft);
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.28;
}

.hero-meta {
  margin-top: 58px;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.hero-meta span:not(:last-child)::after {
  content: "·";
  margin-left: 22px;
  color: var(--gold);
}

.intro,
.services,
.gallery-section,
.video-section,
.marika-section,
.contact {
  padding: 132px 56px;
}

.intro-grid,
.marika-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 86px;
  align-items: start;
}

.section-label {
  max-width: 1160px;
  margin: 0 auto 58px;
}

.with-icon {
  display: flex;
  align-items: center;
  gap: 18px;
}

.with-icon img {
  width: 52px;
  height: auto;
  opacity: 0.88;
}

.with-icon span {
  display: inline-block;
}

.intro h2,
.marika-grid h2 {
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.04;
}

.marika-grid h2 em {
  display: inline;
}

.text-column,
.marika-text {
  padding-top: 18px;
}

.text-column p,
.process-item p,
.contact p,
.marika-text p {
  color: var(--green-soft);
  font-size: 17px;
  line-height: 1.78;
}

.text-column p,
.marika-text p {
  margin: 0 0 28px;
}

.marika-text p:last-child {
  margin-bottom: 0;
}

.centered {
  max-width: 860px;
  margin: 0 auto 68px;
  text-align: center;
}

.centered h2,
.contact h2 {
  font-size: clamp(46px, 6.3vw, 88px);
  line-height: 1.06;
}

.process-section {
  position: relative;
  background:
    linear-gradient(rgba(239, 230, 218, 0.88), rgba(239, 230, 218, 0.94)),
    radial-gradient(circle at 20% 30%, rgba(200, 169, 92, 0.16), transparent 34%);
}

.process-heading {
  margin-bottom: 70px;
}

.process-heading h2 {
  max-width: 860px;
  margin: 0 auto;
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(48px, 6.5vw, 92px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.process-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 58px;
  row-gap: 88px;
}

.process-item {
  position: relative;
  min-height: 330px;
}

.process-item:nth-child(1),
.process-item:nth-child(2),
.process-item:nth-child(3) {
  grid-column: span 2;
}

.process-item:nth-child(4) {
  grid-column: 2 / span 2;
}

.process-item:nth-child(5) {
  grid-column: 4 / span 2;
}

.process-visual {
  position: relative;
  height: 142px;
  margin-bottom: 14px;
}

.process-number {
  position: absolute;
  top: -30px;
  left: -10px;
  z-index: 1;
  color: rgba(10, 40, 0, 0.11);
  font-family: var(--serif);
  font-size: 122px;
  font-weight: 500;
  line-height: 1;
}

.process-visual img {
  position: relative;
  z-index: 2;
  width: 184px;
  height: 142px;
  object-fit: contain;
  opacity: 0.84;
  mix-blend-mode: multiply;
}

.process-item h3 {
  position: relative;
  z-index: 3;
  margin: -8px 0 18px;
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(34px, 3.4vw, 46px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.process-item p {
  max-width: 340px;
  margin: 0;
  line-height: 1.48;
}

.video-frame {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.22);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: rgba(10, 40, 0, 0.12);
}

.gallery-slider {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 64px 1fr 64px;
  gap: 18px;
  align-items: center;
}

.gallery-viewport {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.22);
}

.gallery-track {
  display: flex;
  touch-action: pan-y;
  transform: translateX(0);
  transition: transform 0.45s ease;
}

.gallery-slide {
  flex: 0 0 100%;
  margin: 0;
}

.gallery-slide img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.96);
  user-select: none;
  -webkit-user-drag: none;
}

.gallery-arrow {
  width: 64px;
  height: 64px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.18);
  color: var(--green);
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transition: 0.25s ease;
}

.gallery-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.gallery-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.gallery-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: 0.25s ease;
}

.gallery-dot.is-active {
  background: var(--gold);
  transform: scale(1.2);
}

.marika-section {
  background:
    linear-gradient(rgba(239, 230, 218, 0.9), rgba(239, 230, 218, 0.96)),
    radial-gradient(circle at 80% 30%, rgba(200, 169, 92, 0.14), transparent 34%);
}

.bow-divider {
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  background: var(--cream);
}

.bow-divider span {
  height: 1px;
  background: var(--line);
}

.bow-divider img {
  width: 34px;
  height: auto;
  opacity: 0.82;
}

.contact {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.contact p {
  max-width: 620px;
  margin: 36px auto 44px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 42px;
  border: 1px solid var(--gold);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.button:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--cream);
}

.footer {
  padding: 34px 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  color: var(--green-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer p {
  margin: 0;
}

.footer a {
  justify-self: end;
}

.footer-bow {
  width: 34px;
  height: auto;
  opacity: 0.82;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 170px 1fr 150px;
    padding: 0 28px;
  }

  .brand img {
    width: 134px;
  }

  .nav {
    gap: 16px;
    font-size: 10px;
  }

  .header-cta {
    font-size: 10px;
  }

  .intro-grid,
  .marika-grid {
    gap: 64px;
  }

  .process-grid {
    column-gap: 38px;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 88px;
    min-height: 88px;
    padding: 0 22px;
    grid-template-columns: 1fr auto;
    gap: 0;
    text-align: left;
  }

  .brand {
    justify-self: start;
    position: relative;
    z-index: 30;
  }

  .brand img {
    width: 156px;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 30;
  }

  .menu-panel {
    position: fixed;
    inset: 88px 0 auto 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 42px 24px 46px;
    border-bottom: 1px solid var(--line);
    background: rgba(239, 230, 218, 0.96);
    backdrop-filter: blur(18px);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.32s ease, opacity 0.24s ease;
    z-index: 25;
  }

  .site-header.is-open .menu-panel {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav {
    display: grid;
    justify-content: stretch;
    gap: 0;
    width: 100%;
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.22em;
  }

  .nav a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav a:first-child {
    border-top: 1px solid var(--line);
  }

  .nav a::after {
    display: none;
  }

  .header-cta {
    justify-self: center;
    min-height: 48px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    font-size: 12px;
    letter-spacing: 0.22em;
  }

  .header-cta::after {
    display: none;
  }

  .hero {
    padding: 188px 24px 88px;
  }

  .hero h1 {
    font-size: clamp(58px, 17vw, 104px);
    line-height: 1.04;
  }

  .hero-copy {
    font-size: 24px;
  }

  .intro,
  .services,
  .gallery-section,
  .video-section,
  .marika-section,
  .contact {
    padding: 92px 24px;
  }

  .intro-grid,
  .marika-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .section-label,
  .kicker,
  .intro-grid,
  .marika-grid,
  .text-column,
  .marika-text,
  .process-item,
  .process-heading,
  .centered,
  .contact {
    text-align: center;
  }

  .section-label {
    margin-bottom: 34px;
  }

  .with-icon {
    justify-content: center;
    gap: 14px;
  }

  .with-icon img {
    width: 44px;
  }

  .intro h2,
  .centered h2,
  .contact h2,
  .process-heading h2,
  .marika-grid h2 {
    font-size: clamp(44px, 12vw, 68px);
    line-height: 1.08;
  }

  .process-grid {
    grid-template-columns: 1fr;
    row-gap: 58px;
  }

  .process-item:nth-child(1),
  .process-item:nth-child(2),
  .process-item:nth-child(3),
  .process-item:nth-child(4),
  .process-item:nth-child(5) {
    grid-column: auto;
  }

  .process-item {
    min-height: auto;
  }

  .process-visual {
    height: 120px;
    display: flex;
    justify-content: center;
  }

  .process-number {
    left: 50%;
    transform: translateX(-95px);
    font-size: 96px;
  }

  .process-visual img {
    width: 154px;
    height: 120px;
  }

  .process-item h3 {
    font-size: 38px;
  }

  .process-item p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .gallery-slider {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .gallery-arrow {
    display: none;
  }

  .gallery-slide img {
    aspect-ratio: 1 / 1;
  }

  .gallery-dots {
    margin-top: 20px;
  }

  .bow-divider {
    padding: 38px 24px;
    gap: 16px;
  }

  .bow-divider img {
    width: 30px;
  }

  .footer {
    padding: 30px 24px;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer a {
    justify-self: center;
  }

  .footer-bow {
    width: 30px;
  }
}