:root {
  --cream: #fffff0;
  --cream-deep: #fff8e7;
  --ink: #2d2d2d;
  --gold: #c9a96e;
  --border: #e8dcc8;
  --white: #ffffff;
  --max: 1440px;
  --pad: clamp(24px, 5vw, 80px);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-optical-sizing: auto;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

.section-pad {
  padding: 120px var(--pad);
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin-bottom: 64px;
}

.section-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 36px);
  color: var(--ink);
}

.section-head p {
  margin: 0;
  font-size: 16px;
  color: var(--ink);
  opacity: 0.7;
}

.section-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  opacity: 0.9;
}

.btn-solid {
  background: var(--ink);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-hero {
  background: var(--white);
  color: var(--ink);
  border-color: var(--gold);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 90px;
  padding: 0 var(--pad);
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

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

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  object-fit: cover;
}

.brand span {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 24px;
  cursor: pointer;
  color: var(--ink);
}

/* Hero */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: flex-end;
  padding: 80px var(--pad);
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.hero-text {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-text h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.15;
}

.hero-text p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #fff8e7;
}

.hero-dots {
  width: 60px;
  height: 12px;
  flex-shrink: 0;
}

/* Services */
.services {
  background: var(--cream-deep);
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
}

.service-card .media {
  height: 200px;
}

.service-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card .info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card h3,
.story-card h3,
.badge-card h3,
.product-card h3,
.category-item h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
}

.service-card h3 {
  font-size: 20px;
}

.service-card p,
.story-card p,
.badge-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
}

/* Products */
.product-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-card .media {
  position: relative;
  height: 380px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.product-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card .price {
  margin: 0;
  font-size: 16px;
}

.product-card .link {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
}

.product-card h3 {
  font-size: 18px;
}

/* Signature categories */
.signature {
  background: var(--cream-deep);
}

.category-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.category-item .media {
  height: 300px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.category-item .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-item h3 {
  margin-top: 16px;
  font-size: 18px;
  text-align: center;
}

.assist-row {
  margin-top: 64px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.assist-row .label {
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
  opacity: 0.6;
}

.assist-row .contact {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
}

/* Bridal / Contemporary story cards */
.story-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.story-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-card .media {
  height: 320px;
  overflow: hidden;
}

.story-card.contemporary .media {
  height: 280px;
}

.story-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card h3 {
  font-size: 22px;
}

.story-card p {
  font-size: 15px;
}

.cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.contemporary {
  background: var(--cream-deep);
}

/* Divider */
.quote-divider {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px var(--pad);
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.quote-divider .bg {
  position: absolute;
  inset: 0;
}

.quote-divider .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-divider .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(45, 45, 45, 0.4);
}

.quote-divider .inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.quote-divider p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.3;
}

.quote-divider .section-line {
  width: 40px;
  background: rgba(255, 255, 255, 0.7);
}

/* Testimonials */
.testimonial-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-user img {
  width: 64px;
  height: 64px;
  border-radius: 32px;
  object-fit: cover;
}

.testimonial-user span {
  font-family: var(--serif);
  font-size: 18px;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.8;
}

/* Visit store */
.visit-store {
  display: grid;
  grid-template-columns: 1fr 600px;
  min-height: 480px;
  background: var(--cream-deep);
  overflow: hidden;
}

.visit-store .media img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.visit-store .copy {
  background: var(--white);
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.visit-store h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
}

.visit-store p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.8;
}

/* Our story */
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.story-eyebrow {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold);
  text-align: center;
}

.story-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.9;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.story-grid img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Quality */
.quality {
  background: var(--cream-deep);
}

.badge-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.badge-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.badge-icon {
  width: 56px;
  height: 56px;
  border-radius: 28px;
  background: var(--cream-deep);
  display: grid;
  place-items: center;
}

.badge-icon img {
  width: 22px;
  height: 22px;
}

.badge-card h3 {
  font-size: 20px;
}

.badge-card p {
  font-size: 15px;
}

/* Store info */
.store-info {
  display: grid;
  grid-template-columns: 640px 1fr;
  min-height: 540px;
  overflow: hidden;
}

.store-info .copy {
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.store-info .eyebrow {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gold);
}

.store-info h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
}

.store-info > .copy > p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.8;
}

.store-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.store-details h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
}

.store-details p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.8;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.contact-row img {
  width: 14px;
  height: 14px;
}

.store-info .media img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 80px var(--pad) 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 320px 200px 200px;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand h2 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 24px;
}

.footer-brand p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.6;
}

.footer-links h3,
.footer-social h3 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
}

.footer-links a {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  opacity: 0.7;
}

.footer-links a:hover {
  opacity: 1;
}

.social-row {
  display: flex;
  gap: 16px;
}

.social-row a {
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.13);
  display: grid;
  place-items: center;
}

.social-row img {
  width: 16px;
  height: 16px;
}

.footer-rule {
  margin: 64px 0;
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  opacity: 0.5;
}

.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .card-grid-3,
  .story-row,
  .testimonial-row,
  .badge-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .visit-store,
  .store-info {
    grid-template-columns: 1fr;
  }

  .visit-store .copy,
  .store-info .copy {
    width: 100%;
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .section-pad {
    padding: 72px var(--pad);
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 14px var(--pad);
  }

  .hero {
    min-height: 560px;
    padding: 48px var(--pad);
  }

  .hero-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .card-grid-3,
  .story-row,
  .testimonial-row,
  .badge-row,
  .category-row,
  .store-details,
  .footer-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-grid img {
    height: 260px;
  }

  .product-card .media,
  .category-item .media,
  .story-card .media,
  .story-card.contemporary .media {
    height: 260px;
  }
}
