:root {
  --ink: #18201d;
  --ink-soft: #3e4742;
  --muted: #68736d;
  --paper: #ffffff;
  --paper-soft: #f4f7f2;
  --sage: #435f50;
  --sage-dark: #17231e;
  --rose: #b86f7c;
  --wine: #7a2435;
  --gold: #c1a059;
  --line: rgba(24, 32, 29, 0.13);
  --shadow: 0 24px 60px rgba(24, 32, 29, 0.16);
  --max: 1180px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  border: 0;
}

.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;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px;
  color: #fff;
  transition: background 220ms var(--ease), color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 12px 36px rgba(24, 32, 29, 0.1);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  line-height: 1;
}

.brand img,
.footer-brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 50%;
}

.brand span,
.footer-brand span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.86rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid currentColor;
  border-radius: 8px;
}

.site-nav .nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  color: currentColor;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 22px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  color: #fff;
  background: var(--sage-dark);
}

.hero-video,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(10, 17, 14, 0.82), rgba(10, 17, 14, 0.46) 46%, rgba(10, 17, 14, 0.18)),
    linear-gradient(0deg, rgba(10, 17, 14, 0.36), rgba(10, 17, 14, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 178px 0 96px;
}

.location,
.section-heading p,
.booth-copy > p:first-child,
.corporate-copy > p:first-child,
.investment-section > div > p:first-child,
.inquiry-copy > p:first-child {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 7rem;
  font-weight: 700;
  line-height: 0.9;
}

.hero h1 span {
  display: inline;
}

.hero-copy {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.26rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  gap: 10px;
  padding: 0 24px;
  border-radius: 8px;
  font-size: 0.91rem;
  font-weight: 800;
  transition: transform 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease),
    border-color 180ms var(--ease);
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button-primary {
  background: #fff;
  color: var(--sage-dark);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.74);
  color: #fff;
}

.button-light {
  background: #fff;
  color: var(--sage-dark);
}

.intro-section,
.rentals-section,
.blooms-section,
.process-section,
.inquiry-section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.intro-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  align-items: center;
  padding: 88px 0;
}

h2,
h3,
p {
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 4.1rem;
  font-weight: 700;
  line-height: 0.96;
}

h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  line-height: 1.05;
}

.intro-copy p,
.section-heading + p,
.booth-copy p,
.corporate-copy p,
.investment-section p,
.inquiry-copy p {
  color: var(--ink-soft);
}

.intro-copy p {
  margin: 24px 0 0;
  max-width: 500px;
  font-size: 1.05rem;
}

.intro-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.85fr 1fr;
  gap: 14px;
  align-items: end;
}

.intro-strip figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper-soft);
  box-shadow: var(--shadow);
}

.intro-strip figure:nth-child(1) {
  aspect-ratio: 0.88;
}

.intro-strip figure:nth-child(2) {
  aspect-ratio: 0.76;
  margin-bottom: 44px;
}

.intro-strip figure:nth-child(3) {
  aspect-ratio: 0.9;
  margin-bottom: 14px;
}

.intro-strip img,
.rental-card img,
.booth-media img,
.gallery-item img,
.corporate-media img,
.investment-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rentals-section,
.blooms-section,
.process-section,
.inquiry-section {
  padding: 94px 0;
}

.section-heading {
  max-width: 740px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.rental-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.rental-card {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.rental-card.featured {
  grid-column: 1 / -1;
  grid-template-columns: 1fr 1fr;
  min-height: 430px;
}

.rental-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
}

.rental-card p {
  margin: 18px 0 0;
  color: var(--muted);
}

.rental-card a,
.text-link {
  width: fit-content;
  margin-top: 24px;
  color: var(--wine);
  font-weight: 800;
  border-bottom: 2px solid currentColor;
}

.booth-section {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 64px;
  align-items: center;
  padding: 104px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--paper-soft);
}

.booth-media {
  aspect-ratio: 1.04;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.booth-copy {
  max-width: 560px;
}

.booth-copy p:not(:first-child) {
  margin: 22px 0 0;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: inset 0 0 0 3px #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  grid-auto-rows: 230px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 0;
  border-radius: 8px;
  background: var(--sage-dark);
  cursor: pointer;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  transition: transform 520ms var(--ease), opacity 520ms var(--ease);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 18, 15, 0.04), rgba(11, 18, 15, 0.55));
}

.gallery-item span {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 1;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.05);
  opacity: 0.92;
}

.corporate-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
  padding: 104px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--sage-dark);
  color: #fff;
}

.corporate-copy {
  max-width: 540px;
}

.corporate-copy p:not(:first-child) {
  color: rgba(255, 255, 255, 0.78);
  margin: 24px 0 0;
}

.corporate-copy .button {
  margin-top: 32px;
}

.corporate-media {
  display: grid;
  grid-template-columns: 0.84fr 1fr;
  gap: 16px;
  align-items: center;
}

.corporate-media img {
  min-height: 440px;
  max-height: 560px;
  border-radius: 8px;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.24);
}

.corporate-media img:first-child {
  height: 500px;
}

.corporate-media img:last-child {
  height: 430px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 236px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.process-list span {
  color: var(--rose);
  font-size: 0.84rem;
  font-weight: 900;
}

.process-list h3 {
  margin-top: 26px;
}

.process-list p {
  margin: 14px 0 0;
  color: var(--muted);
}

.investment-section {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 96px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--paper-soft);
}

.investment-section img {
  aspect-ratio: 0.78;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.investment-section > div {
  max-width: 630px;
}

.investment-section p:not(:first-child) {
  margin: 22px 0 0;
}

.inquiry-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.inquiry-copy {
  position: sticky;
  top: 122px;
}

.inquiry-copy p:not(:first-child) {
  margin: 22px 0 0;
}

.contact-links {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  color: var(--wine);
  font-weight: 800;
}

.inquiry-form {
  display: grid;
  gap: 18px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(24, 32, 29, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease);
}

input[type="file"] {
  padding: 12px;
}

textarea {
  min-height: 136px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(67, 95, 80, 0.13);
}

.form-submit {
  width: fit-content;
  background: var(--sage-dark);
  color: #fff;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.form-alert {
  margin: 0;
  padding: 14px 16px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.form-alert[data-tone="pending"] {
  background: #f4f7f2;
}

.form-alert[data-tone="success"] {
  background: rgba(67, 95, 80, 0.12);
  color: var(--sage-dark);
}

.form-alert[data-tone="error"] {
  background: rgba(122, 36, 53, 0.12);
  color: var(--wine);
}

.site-footer {
  display: grid;
  gap: 22px;
  justify-items: center;
  padding: 54px 24px 64px;
  color: #fff;
  text-align: center;
  background: #101714;
}

.site-footer p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 800;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  place-items: center;
  padding: 30px;
  background: rgba(7, 11, 9, 0.86);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(100%, 1100px);
  max-height: 86vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.lightbox-close::before,
.lightbox-close::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 13px;
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.lightbox-close::before {
  transform: rotate(45deg);
}

.lightbox-close::after {
  transform: rotate(-45deg);
}

@media (max-width: 980px) {
  .hero h1 {
    font-size: 5.4rem;
  }

  h2 {
    font-size: 3.35rem;
  }

  .intro-section,
  .booth-section,
  .corporate-section,
  .investment-section,
  .inquiry-section {
    grid-template-columns: 1fr;
  }

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

  .rental-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .rental-card,
  .rental-card.featured {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .corporate-media {
    grid-template-columns: 1fr 1fr;
  }

  .inquiry-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 72px;
    padding: 0 18px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand span {
    font-size: 1.22rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 22px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--ink);
    box-shadow: 0 20px 48px rgba(24, 32, 29, 0.16);
    transform: translateY(-130%);
    transition: transform 220ms var(--ease);
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a,
  .site-nav .nav-cta {
    min-height: 50px;
    padding: 14px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    justify-content: flex-start;
  }

  .site-nav .nav-cta {
    border-bottom: 0;
  }

  .hero {
    min-height: 84vh;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(10, 17, 14, 0.83), rgba(10, 17, 14, 0.56)),
      linear-gradient(0deg, rgba(10, 17, 14, 0.4), rgba(10, 17, 14, 0));
  }

  .hero-content {
    width: min(100% - 34px, var(--max));
    padding: 134px 0 68px;
  }

  .hero h1 {
    max-width: 330px;
    font-size: 3.58rem;
    line-height: 0.94;
  }

  .hero h1 span {
    display: block;
  }

  .hero-copy {
    max-width: 340px;
    font-size: 1.04rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 340px;
  }

  .button {
    width: 100%;
  }

  .intro-section,
  .rentals-section,
  .blooms-section,
  .process-section,
  .inquiry-section {
    width: min(100% - 34px, var(--max));
  }

  .intro-section,
  .rentals-section,
  .blooms-section,
  .process-section,
  .inquiry-section {
    padding: 68px 0;
  }

  h2 {
    font-size: 2.72rem;
  }

  h3 {
    font-size: 1.52rem;
  }

  .intro-strip {
    grid-template-columns: 1fr;
  }

  .intro-strip figure,
  .intro-strip figure:nth-child(2),
  .intro-strip figure:nth-child(3) {
    aspect-ratio: 1.12;
    margin-bottom: 0;
  }

  .rental-card,
  .rental-card.featured {
    grid-template-columns: 1fr;
  }

  .rental-card {
    min-height: 0;
  }

  .rental-card img {
    aspect-ratio: 1.15;
  }

  .rental-card div {
    padding: 28px;
  }

  .booth-section,
  .corporate-section,
  .investment-section {
    padding: 72px 17px;
    gap: 36px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 290px;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .corporate-media {
    grid-template-columns: 1fr;
  }

  .corporate-media img,
  .corporate-media img:first-child,
  .corporate-media img:last-child {
    height: auto;
    min-height: 0;
    aspect-ratio: 1;
  }

  .investment-section img {
    aspect-ratio: 1;
  }

  .process-list li {
    min-height: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .inquiry-form {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
