/* Brand colors: update these values to adjust the REIGN WATER palette. */
:root {
  --navy: #06172e;
  --navy-2: #0b2f5b;
  --gold: #c9982e;
  --gold-light: #e8c76b;
  --emerald: #007a5a;
  --pearl: #f8f6ef;
  --white: #ffffff;
  --mist: #dff7fa;
  --water-blue: #dff7fa;
  --navy-soft: #eef2f6;
  --ink: #102238;
  --muted: #46586c;
  --line: rgba(6, 23, 46, 0.18);
  --shadow: 0 28px 90px rgba(6, 23, 46, 0.22);
  --gold-gradient: linear-gradient(135deg, #f3dc8a 0%, #c9982e 48%, #9c7220 76%, #e8c76b 100%);
  --serif: "Cinzel", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--pearl);
  font-family: var(--sans);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(201, 152, 46, 0.22);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 44px rgba(6, 23, 46, 0.1);
  backdrop-filter: blur(20px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  gap: 24px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  width: 188px;
  min-width: 168px;
}

.brand-logo {
  width: 100%;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 5px 10px rgba(6, 23, 46, 0.12));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

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

.nav-links a:hover::after {
  transform: scaleX(1);
}

.section-pad {
  padding: clamp(84px, 10vw, 144px) max(20px, calc((100vw - 1180px) / 2));
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 46%) minmax(380px, 1fr);
  align-items: center;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  gap: clamp(32px, 4vw, 72px);
  color: var(--navy);
  background: radial-gradient(circle at 18% 16%, rgba(223, 247, 250, 0.36), transparent 28%), radial-gradient(circle at 78% 18%, rgba(201, 152, 46, 0.16), transparent 24%), linear-gradient(112deg, var(--pearl) 0%, #ffffff 48%, var(--navy-2) 48.2%, #031022 100%);
}

.hero.section-pad {
  padding: 0;
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(6, 23, 46, 0.05) 1px, transparent 1px), linear-gradient(180deg, rgba(201, 152, 46, 0.06) 1px, transparent 1px);
  background-size: 88px 88px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, black 16%, transparent 88%);
}

.hero::after {
  position: absolute;
  top: 12%;
  left: 50%;
  width: 1px;
  height: 76%;
  background: linear-gradient(180deg, transparent, rgba(201, 152, 46, 0.22), transparent);
  transform: translateX(-50%);
  content: "";
}

.hero-watermark {
  position: absolute;
  right: -3vw;
  bottom: -5vw;
  color: rgba(201, 152, 46, 0.08);
  font-family: var(--serif);
  font-size: clamp(6rem, 17vw, 18rem);
  font-weight: 700;
  line-height: 1;
}

.hero-content,
.hero-product {
  position: relative;
  z-index: 1;
}

.hero-content {
  padding: clamp(64px, 8vw, 120px) clamp(20px, 6vw, 78px) clamp(64px, 8vw, 120px) max(20px, calc((100vw - 1180px) / 2));
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--emerald);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--navy);
  font-family: var(--serif);
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(4rem, 8.5vw, 8.4rem);
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-logo-title {
  max-width: min(620px, 94vw);
  margin-bottom: 24px;
  padding: clamp(12px, 2vw, 20px);
  border: none;
  border-radius: 8px;
  background: rgba(248, 246, 239, 0.5);
  box-shadow: 0 12px 30px rgba(6, 23, 46, 0.04);
}

.hero-logo-title img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(6, 23, 46, 0.16));
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 5vw, 4.7rem);
}

h3 {
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-subtitle {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 22px;
  color: rgba(6, 23, 46, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.85;
}

.hero-accent {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
}

.hero-accent::before {
  width: 54px;
  height: 1px;
  background: var(--gold-gradient);
  content: "";
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

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

.btn-primary {
  color: var(--navy);
  background: var(--gold-gradient);
  box-shadow: 0 14px 30px rgba(201, 152, 46, 0.26);
}

.btn-secondary {
  border-color: rgba(6, 23, 46, 0.28);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(16px);
}

.hero-signature {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: min(620px, 100%);
  margin-top: 28px;
}

.hero-signature span {
  padding: 10px 14px;
  border: 1px solid rgba(201, 152, 46, 0.18);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.hero-product {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  width: min(100%, 720px);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 64px) max(18px, calc((100vw - 1180px) / 2)) clamp(28px, 5vw, 64px) clamp(14px, 4vw, 52px);
}

.hero-product::after {
  position: absolute;
  right: 10%;
  bottom: 10%;
  left: 10%;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.24), rgba(6, 23, 46, 0.2) 48%, transparent 72%);
  content: "";
  filter: blur(10px);
}

.product-stage {
  position: relative;
  z-index: 3;
  width: min(420px, 86%);
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(201, 152, 46, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(6, 23, 46, 0.12);
  backdrop-filter: blur(20px);
  text-align: center;
}

.product-stage p {
  margin-bottom: 4px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.1;
}

.product-stage span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.product-label {
  display: inline-flex;
  padding: 10px 18px;
  margin-top: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(201, 152, 46, 0.18);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(12px);
  animation: label-rise 900ms ease-out 300ms forwards;
}

@keyframes label-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-bottle-frame {
  position: relative;
  z-index: 2;
  width: min(88vw, 680px);
  max-width: 680px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 80px rgba(6, 23, 46, 0.18);
}

.hero-bottle-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: none;
  display: block;
}

.moments-intro {
  padding: clamp(46px, 6vw, 76px) 20px;
  border-top: 1px solid rgba(201, 152, 46, 0.2);
  border-bottom: 1px solid rgba(201, 152, 46, 0.14);
  background: linear-gradient(180deg, var(--white), #f1eee4);
  text-align: center;
}

.moments-intro h2 {
  max-width: 900px;
  margin: 0 auto;
}

.occasion-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-bottom: 1px solid rgba(201, 152, 46, 0.18);
  background: var(--navy);
}

.occasion-strip span {
  display: grid;
  min-height: 76px;
  place-items: center;
  border-right: 1px solid rgba(232, 199, 107, 0.18);
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--serif);
  font-size: clamp(0.78rem, 1vw, 0.98rem);
  font-weight: 700;
  text-align: center;
}

.occasion-strip span:nth-child(odd) {
  color: var(--gold-light);
}

.about {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(34px, 6vw, 80px);
  border-top: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(201, 152, 46, 0.11) 0 1px, transparent 1px), linear-gradient(180deg, #f1eee4, var(--white));
  background-size: 92px 92px, auto;
}

.about-copy {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
}

.about-copy p {
  margin-bottom: 18px;
}

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

.product {
  background: linear-gradient(180deg, var(--navy-soft), var(--pearl) 40%, var(--white));
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
  align-items: start;
}

.feature-card {
  position: relative;
  min-height: auto;
  padding: 30px 32px;
  border: 1px solid rgba(6, 23, 46, 0.12);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 80px rgba(6, 23, 46, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(201, 152, 46, 0.9), rgba(124, 94, 21, 0.75));
  content: "";
}

.feature-card h3 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 1.35rem;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.8;
}

.scripture {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 16% 12%, rgba(201, 152, 46, 0.14), transparent 24%), linear-gradient(135deg, #031022, rgba(6, 23, 46, 0.98) 48%, rgba(11, 47, 91, 0.98));
}

.scripture-glow {
  position: absolute;
  inset: 14% auto auto 50%;
  width: min(520px, 64vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 152, 46, 0.14), transparent 68%);
  transform: translateX(-50%);
}

.scripture-inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(38px, 6vw, 74px);
  border: 1px solid rgba(232, 199, 107, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.scripture-inner::before {
  display: block;
  width: 80px;
  height: 3px;
  margin: 0 auto 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(201, 152, 46, 0.95), rgba(124, 94, 21, 0.9));
  content: "";
}


.scripture h2,
.scripture .eyebrow {
  color: var(--white);
}

.scripture .eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: clamp(0.8rem, 1.1vw, 0.95rem);
  margin-bottom: 0.9rem;
}

.scripture h2 {
  font-family: 'Cinzel', serif;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.02;
  font-size: clamp(2.7rem, 5.2vw, 5rem);
  max-width: 10.5ch;
  margin: 0 auto 1rem;
}

blockquote {
  margin: 22px auto;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.98rem, 1.9vw, 1.35rem);
  line-height: 1.9;
}

.restoration {
  margin-bottom: 0;
  color: var(--gold-light);
  font-weight: 800;
}

.order {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
  background: radial-gradient(circle at 5% 8%, rgba(223, 247, 250, 0.42), transparent 30%), linear-gradient(180deg, #f1eee4, var(--white));
}

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

.order-lead {
  margin-bottom: 14px;
  color: var(--navy) !important;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.55rem) !important;
  font-weight: 700;
  line-height: 1.25;
}

.order-lines {
  display: grid;
  gap: 8px;
  margin-top: 26px;
  color: var(--navy);
}

.order-lines p {
  margin: 0;
  padding-left: 18px;
  border-left: 2px solid rgba(201, 152, 46, 0.55);
  color: var(--navy);
  font-weight: 800;
}

.order-note {
  margin-top: 28px;
  padding: 20px;
  border-left: 3px solid var(--gold);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 48px rgba(6, 23, 46, 0.1);
}

.order-note strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.12rem;
}

.order-note span {
  display: block;
}

.order-note span + span {
  margin-top: 12px;
}

.inquiry-form {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(6, 23, 46, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

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

.full {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(6, 23, 46, 0.14);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(6, 23, 46, 0.03);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

input:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 152, 46, 0.18);
}

input {
  min-height: 50px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  padding: 14px;
}

.form-button {
  margin-top: 22px;
  width: 100%;
}

/* Inline form message (success / error) */
.form-message {
  margin-top: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

.form-message.success {
  color: #1f8f6b;
}

.form-message.error {
  color: #c0392b;
}

.site-footer {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 44px max(20px, calc((100vw - 1160px) / 2));
  color: rgba(255, 255, 255, 0.76);
  background: linear-gradient(135deg, rgba(6, 23, 46, 0.99), rgba(11, 47, 91, 0.98)), var(--navy);
}

.site-footer::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--emerald), var(--gold-light));
  content: "";
}

.site-footer h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.45rem;
}

.footer-logo {
  width: min(230px, 70vw);
  margin-bottom: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(232, 199, 107, 0.34);
  border-radius: 8px;
  background: var(--pearl);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.24));
}

.site-footer p {
  margin-bottom: 6px;
}

@media (max-width: 900px) {
  .hero,
  .about,
  .order {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 78px;
    background: radial-gradient(circle at 28% 18%, rgba(223, 247, 250, 0.34), transparent 32%), linear-gradient(180deg, var(--pearl) 0%, var(--white) 54%, var(--navy-2) 54.2%, #031022 100%);
  }

  .hero.section-pad {
    padding-top: 0;
  }

  .hero::after {
    display: none;
  }

  .hero-content {
    padding: 48px 20px 24px;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-signature {
    justify-content: center;
  }

  .hero-product {
    min-height: auto;
    padding: 24px 20px 42px;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
  }

  .hero-bottle-frame {
    width: min(88vw, 520px);
    margin-bottom: 20px;
  }

  .hero-bottle-image {
    width: 100%;
    max-height: 520px;
    transform: none;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 220px;
  }

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

@media (max-width: 680px) {
  .nav {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    min-height: 96px;
    padding: 14px 0;
    gap: 8px;
  }

  .brand-mark {
    width: auto;
    margin: 0 auto;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    gap: 10px;
    font-size: 0.84rem;
  }

  .section-pad {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero-content {
    padding: 70px 20px 48px;
  }

  h1 {
    font-size: clamp(3.25rem, 17vw, 5rem);
  }

  .hero-logo-title {
    max-width: 100%;
    padding: 12px;
  }

  .order h2 {
    font-size: clamp(2.15rem, 12vw, 3.35rem);
  }

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

  .hero-signature {
    max-width: 100%;
    padding-right: 0;
    gap: 12px;
  }

  .hero-signature span {
    width: 100%;
    text-align: center;
  }

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

  .product-stage {
    width: min(280px, 76vw);
    margin-top: 16px;
    transform: none;
  }

  .hero-bottle-image {
    width: min(92vw, 520px);
    max-height: 420px;
  }

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