:root {
  --forest: #123d33;
  --forest-deep: #082b24;
  --gold: #b9854c;
  --cream: #f4efe5;
  --paper: #fcf9f2;
  --ink: #17342d;
  --font-display: Georgia, "Times New Roman";
  --font-sans: Arial, Helvetica;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans), sans-serif;
}

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

.site-shell {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 0 5vw;
  color: var(--cream);
}

.site-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(7, 35, 29, 0.94) 0%, rgba(8, 43, 36, 0.78) 40%, rgba(8, 43, 36, 0.26) 72%, rgba(8, 43, 36, 0.16) 100%),
    linear-gradient(0deg, rgba(5, 28, 23, 0.62) 0%, transparent 42%);
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: -5;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.04);
}

.blueprint-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(244, 239, 229, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 229, 0.11) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to right, transparent 0%, black 40%, black 100%);
}

.sun-disc {
  position: absolute;
  z-index: -2;
  width: clamp(280px, 32vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  right: 9vw;
  top: 20%;
  background: #ddb87e;
  display: none;
}

.architectural-arch {
  position: absolute;
  z-index: -1;
  width: clamp(360px, 38vw, 610px);
  height: 77%;
  right: 3vw;
  bottom: 0;
  border-radius: 50% 50% 0 0 / 35% 35% 0 0;
  background: var(--forest);
  display: none;
}

.architectural-arch::before,
.architectural-arch span {
  content: "";
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(244, 239, 229, 0.22);
  border-radius: inherit;
}

.architectural-arch span {
  inset: 14%;
  border-color: rgba(244, 239, 229, 0.1);
}

.architectural-arch::after {
  content: "வ";
  position: absolute;
  left: 50%;
  top: 43%;
  transform: translate(-50%, -50%);
  color: rgba(244, 239, 229, 0.07);
  font-family: var(--font-display), serif;
  font-size: clamp(11rem, 22vw, 23rem);
}

.site-header {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(244, 239, 229, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 46px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 4px 4px;
  background: var(--gold);
  color: var(--forest-deep);
  font-family: var(--font-display), serif;
  font-size: 1.8rem;
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--font-display), serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.brand-copy small {
  font-size: 0.52rem;
  letter-spacing: 0.32em;
  font-weight: 700;
  color: var(--gold);
}

.header-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.header-link span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 239, 229, 0.52);
  border-radius: 50%;
  transition: 180ms ease;
}

.header-link:hover span,
.header-link:focus-visible span {
  color: var(--forest-deep);
  background: var(--cream);
}

.hero {
  min-height: calc(100svh - 194px);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.54fr);
  align-items: center;
  padding: 8vh 0 6vh;
}

.eyebrow {
  position: absolute;
  top: 7%;
  left: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
}

.eyebrow span {
  font-family: var(--font-display), serif;
  font-size: 1.15rem;
  font-weight: 600;
}

.eyebrow i {
  width: 40px;
  height: 1px;
  background: currentColor;
}

.eyebrow p {
  margin: 0;
  font-size: 0.67rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-copy {
  width: min(720px, 69vw);
  padding-top: 4vh;
}

.launch-label {
  margin: 0 0 22px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: var(--font-display), serif;
  font-size: clamp(4.7rem, 9.4vw, 9.4rem);
  font-weight: 500;
  line-height: 0.76;
  letter-spacing: -0.055em;
}

h1 em {
  color: var(--gold);
  font-weight: 400;
}

.intro {
  width: min(530px, 88%);
  margin: 44px 0 0;
  font-size: clamp(0.93rem, 1.1vw, 1.08rem);
  line-height: 1.85;
  color: rgba(244, 239, 229, 0.82);
}

.actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
}

.primary-action {
  min-width: 210px;
  height: 58px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--gold);
  color: var(--forest-deep);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.primary-action:hover,
.primary-action:focus-visible {
  transform: translateY(-3px);
  background: var(--cream);
}

.primary-action span {
  font-size: 1.25rem;
}

.actions p {
  margin: 0;
  font-size: 0.7rem;
  line-height: 1.7;
  color: rgba(244, 239, 229, 0.68);
}

.service-rail {
  justify-self: end;
  align-self: end;
  width: min(390px, 30vw);
  margin: 0 3.5vw 0 0;
  padding-bottom: 1vh;
  position: relative;
  z-index: 2;
  color: var(--cream);
  padding: 22px 26px;
  background: rgba(5, 31, 25, 0.58);
  backdrop-filter: blur(12px);
}

.service {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  border-bottom: 1px solid rgba(244, 239, 229, 0.18);
}

.service span {
  color: var(--gold);
  font-size: 0.58rem;
  letter-spacing: 0.13em;
}

.service p {
  margin: 0;
  font-family: var(--font-display), serif;
  font-size: 1.28rem;
}

footer {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(244, 239, 229, 0.24);
  font-size: 0.61rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

footer p {
  margin: 0;
}

footer a {
  color: var(--gold);
  text-transform: lowercase;
  letter-spacing: 0.05em;
}

footer p:last-child {
  text-align: right;
}

@media (max-width: 900px) {
  .site-shell {
    padding: 0 24px;
  }

  .site-header {
    min-height: 92px;
  }

  .header-link {
    font-size: 0;
  }

  .header-link span {
    font-size: 0.9rem;
  }

  .hero {
    min-height: auto;
    display: block;
    padding: 112px 0 48px;
  }

  .eyebrow {
    top: 45px;
  }

  .hero-copy {
    width: 100%;
    padding: 0;
  }

  h1 {
    font-size: clamp(4.25rem, 19vw, 7rem);
  }

  .architectural-arch {
    width: 68vw;
    height: 49%;
    right: -22vw;
  }

  .site-shell::before {
    background:
      linear-gradient(90deg, rgba(7, 35, 29, 0.92) 0%, rgba(8, 43, 36, 0.67) 66%, rgba(8, 43, 36, 0.36) 100%),
      linear-gradient(0deg, rgba(5, 28, 23, 0.74) 0%, transparent 52%);
  }

  .hero-art {
    object-position: 58% center;
  }

  .sun-disc {
    right: -18vw;
    top: 22%;
  }

  .service-rail {
    width: min(100%, 410px);
    margin: 70px 0 0 auto;
    padding: 28px;
    background: rgba(8, 43, 36, 0.78);
  }

  footer {
    grid-template-columns: 1fr;
    gap: 11px;
    padding: 24px 0;
  }

  footer p:last-child {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .brand-copy strong {
    font-size: 1.38rem;
  }

  .brand-copy small {
    letter-spacing: 0.22em;
  }

  .launch-label {
    line-height: 1.6;
  }

  h1 {
    line-height: 0.83;
  }

  .intro {
    width: 100%;
    margin-top: 34px;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-action {
    width: 100%;
  }

  .service-rail {
    margin-top: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
