:root {
  --bg: #070707;
  --bg-soft: #101010;
  --bg-panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --text: #f7f1e6;
  --muted: #d0c0a5;
  --muted-soft: #a8916b;
  --gold: #d9b167;
  --gold-bright: #f1d694;
  --gold-deep: #9d6a26;
  --rose: #8e4f49;
  --line: rgba(217, 177, 103, 0.2);
  --shadow: 0 24px 70px rgba(0,0,0,0.35);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(217, 177, 103, 0.14), transparent 28%),
    linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.utility-bar {
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.86rem;
}

.utility-inner {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.utility-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(8, 8, 8, 0.82);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  border-radius: 50%;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.02;
}

.brand-copy strong,
h1,
h2 {
  font-family: 'Cormorant Garamond', serif;
}

.brand-copy strong {
  font-size: 1.85rem;
  color: #f3d59d;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 2px;
}

.brand-slogan {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 2px;
  letter-spacing: normal;
  text-transform: none;
  font-weight: 400;
}


.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.nav a:not(.btn) {
  color: var(--muted);
  font-size: 0.94rem;
}

.nav a:hover { color: #f4ddb2; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.24s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: #1c1207;
  box-shadow: 0 10px 28px rgba(157, 106, 38, 0.3);
}

.btn-light {
  background: rgba(255,255,255,0.08);
  color: var(--text);
  border-color: rgba(255,255,255,0.16);
}

.btn-outline {
  background: rgba(255,255,255,0.02);
  color: var(--text);
  border-color: var(--line);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  background: url('assets/gallery/pinacolada-chrysanthemum.jpg') center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11,10,9,0.82) 0%, rgba(11,10,9,0.56) 46%, rgba(11,10,9,0.34) 100%),
    radial-gradient(circle at top right, rgba(217, 177, 103, 0.18), transparent 30%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: end;
  padding: 76px 0;
}

.eyebrow {
  margin: 0 0 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  color: #f2d79d;
}

.eyebrow.gold { color: var(--gold); }

.hero-copy h1 {
  margin: 0 0 18px;
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 5.9rem);
  line-height: 0.93;
  letter-spacing: -0.03em;
  color: #fff8ed;
}

.lead,
.section-intro,
.card p,
.image-caption p,
.summary-card p,
.contact-card p,
.contact-section p,
.site-footer p,
li,
.intro-grid p {
  line-height: 1.78;
}

.hero-copy .lead {
  max-width: 58ch;
  color: rgba(255, 247, 234, 0.9);
  font-size: 1.04rem;
}

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

.hero-panel {
  display: grid;
  gap: 16px;
}

.mini-card,
.card,
.summary-card,
.contact-card,
.contact-form,
.gallery-item,
.image-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mini-card {
  padding: 22px;
}

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

.mini-card strong {
  font-size: 1.18rem;
  line-height: 1.4;
}

.section {
  padding: 72px 0;
}

.intro-section,
.gallery-section {
  background: transparent;
}

.intro-grid,
.contact-grid,
.split-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.intro-grid p,
.section-intro,
.contact-section p,
.card p,
.summary-card p,
.image-caption p,
.contact-card p {
  color: var(--muted);
  font-size: 1rem;
}

.light-section,
.contact-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}

.section-head {
  margin-bottom: 28px;
}

.section-head.centered {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 30px;
}

.flower-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 18px;
}

.flower-card.large {
  grid-row: span 2;
}

.image-card,
.gallery-item {
  overflow: hidden;
}

.image-card img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-caption {
  padding: 18px 20px 22px;
}

.image-caption h3,
.card h3,
.summary-card h3 {
  margin: 0 0 8px;
  font-size: 1.28rem;
  color: #f0dab0;
}

.summary-card {
  padding: 24px;
  background: linear-gradient(180deg, rgba(217,177,103,0.16), rgba(255,255,255,0.04));
}

.cards.three-up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  padding: 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 18px;
}

.gallery-item {
  position: relative;
  min-height: 280px;
}

.gallery-item.tall {
  grid-row: span 2;
  min-height: 100%;
}

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

.gallery-item figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(7,7,7,0.68);
  color: #fff7ea;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid rgba(255,255,255,0.08);
}

.dark-band {
  background: linear-gradient(135deg, rgba(217,177,103,0.14), rgba(255,255,255,0.03));
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.split-band {
  align-items: center;
}

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

.check-list li {
  position: relative;
  padding-left: 20px;
  color: rgba(255,247,234,0.88);
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
}

.contact-card {
  padding: 22px 24px;
  margin-top: 18px;
}

.contact-form {
  padding: 24px;
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: #f0d79d;
  font-size: 0.92rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  font: inherit;
  color: #111111;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
}

input::placeholder,
textarea::placeholder {
  color: #454545;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(217, 177, 103, 0.45);
  outline-offset: 2px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-weight: 600;
}

.social-link svg {
  width: 18px;
  height: 18px;
  color: var(--gold-bright);
}

.social-link:hover {
  border-color: rgba(217, 177, 103, 0.45);
  transform: translateY(-1px);
}

.form-note {
  margin: -2px 2px 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.full { width: 100%; }

.site-footer {
  background: #050505;
  color: rgba(255,247,234,0.8);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-wrap div {
  display: flex;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-wrap a:hover { color: #fff; }

@media (max-width: 1080px) {
  .hero-content,
  .intro-grid,
  .contact-grid,
  .split-band,
  .flower-grid,
  .gallery-grid,
  .cards.three-up {
    grid-template-columns: 1fr;
  }

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

  .nav-wrap {
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-copy h1 { max-width: none; }

  .hero-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body {
    overflow-x: hidden;
  }

  main {
    display: flex;
    flex-direction: column;
  }

  #hero { order: 1; }
  #flowers { order: 2; }
  #gallery { order: 3; }
  #about { order: 4; }
  #services { order: 5; }
  .dark-band { order: 6; }
  #contact { order: 7; }

  .site-shell,
  .utility-inner {
    width: min(calc(100% - 20px), var(--max));
  }

  .section {
    padding: 50px 0;
  }

  .utility-inner,
  .nav-wrap,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
  }

  .site-header {
    position: static;
    background: rgba(6, 6, 6, 0.94);
  }

  .nav-wrap {
    min-height: auto;
    gap: 14px;
  }

  .brand {
    width: 100%;
    align-items: center;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }

  .brand-copy strong {
    font-size: 1.55rem;
  }

  .brand-slogan {
    font-size: 0.82rem;
  }

  .nav {
    width: 100%;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 2px 0 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    text-align: center;
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .nav a:not(.btn),
  .nav .btn {
    width: auto;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
  }

  .nav .btn {
    background: linear-gradient(135deg, rgba(241,214,148,0.18), rgba(157,106,38,0.24));
    color: #f6e5bd;
  }

  .hero {
    min-height: auto;
    background-position: 62% center;
  }

  .hero-content {
    gap: 18px;
    padding: 52px 0 34px;
    align-items: start;
  }

  .hero-copy h1 {
    font-size: clamp(2.55rem, 12vw, 3.5rem);
    line-height: 0.98;
    margin-bottom: 14px;
  }

  .hero-copy .lead,
  .section-intro,
  .intro-grid p,
  .card p,
  .summary-card p,
  .image-caption p,
  .contact-card p,
  .contact-section p,
  li {
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .mini-card,
  .card,
  .summary-card,
  .contact-card,
  .contact-form,
  .image-caption {
    padding-left: 18px;
    padding-right: 18px;
  }

  .mini-card,
  .card,
  .summary-card,
  .contact-card,
  .contact-form,
  .gallery-item,
  .image-card {
    border-radius: 22px;
  }

  .section-head.centered {
    text-align: left;
    max-width: none;
    margin: 0 0 20px;
  }

  #flowers .section-head,
  #gallery .section-head {
    margin-bottom: 18px;
  }

  .flower-grid,
  .gallery-grid,
  .cards.three-up {
    gap: 14px;
  }

  .image-card img,
  .gallery-item img {
    width: 100%;
    object-fit: cover;
  }

  .image-card img {
    aspect-ratio: 4 / 4.8;
  }

  .gallery-item {
    min-height: 0;
  }

  .gallery-item img {
    aspect-ratio: 4 / 5;
  }

  .gallery-item.wide img {
    aspect-ratio: 4 / 4.2;
  }

  .gallery-item figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: fit-content;
    max-width: calc(100% - 24px);
    font-size: 0.84rem;
    padding: 9px 12px;
    background: rgba(7,7,7,0.56);
    backdrop-filter: blur(10px);
  }

  .summary-card {
    background: linear-gradient(180deg, rgba(217,177,103,0.22), rgba(255,255,255,0.05));
  }

  .contact-grid,
  .split-band,
  .intro-grid {
    gap: 22px;
  }

  .contact-form {
    gap: 12px;
  }

  input,
  textarea {
    padding: 13px 14px;
    font-size: 16px;
  }

  .social-links,
  .footer-links {
    width: 100%;
  }

  .social-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-link {
    justify-content: center;
  }

  .footer-wrap,
  .footer-links {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .site-shell,
  .utility-inner {
    width: min(calc(100% - 16px), var(--max));
  }

  .section {
    padding: 42px 0;
  }

  .brand {
    gap: 10px;
  }

  .brand-copy strong {
    font-size: 1.4rem;
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 2.6rem);
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  .nav a:not(.btn),
  .nav .btn {
    padding: 9px 13px;
  }

  .image-card img {
    aspect-ratio: 4 / 5;
  }

  .gallery-item img,
  .gallery-item.wide img {
    aspect-ratio: 4 / 5.2;
  }

  .social-links {
    grid-template-columns: 1fr;
  }
}
