:root {
  --ivory: #F6EEE1;
  --ivory-deep: #EFE3CF;
  --plum: #2E1C2B;
  --gold: #B08D4F;
  --gold-soft: #C89B5A;
  --text: #3D2438;
  --text-soft: #6B5D52;
  --cream-text: #F3E9DA;
  --maxw: 1100px;
  --pad: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--ivory);
  line-height: 1.6;
}
img, svg { display: block; max-width: 100%; }

.section { padding: clamp(48px, 9vw, 110px) var(--pad); }
.container { max-width: var(--maxw); margin: 0 auto; }

h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.1; }

.display-italic { font-style: italic; font-weight: 500; }

.label {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
}

.divider { height: 1px; background: var(--gold); opacity: 0.35; border: 0; max-width: 60px; margin: 0 auto; }

/* Buttons */
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row.center { justify-content: center; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Montserrat', sans-serif; font-size: 0.92rem; font-weight: 500;
  text-decoration: none; cursor: pointer;
  padding: 12px 22px; min-height: 44px; border-radius: 999px;
  border: 1px solid rgba(61,36,56,0.25); color: var(--text);
  background: transparent; transition: all 0.2s ease;
}
.btn:hover { background: var(--plum); border-color: var(--plum); color: var(--cream-text); }

/* Hero */
.hero {
  background: linear-gradient(170deg, var(--ivory) 0%, var(--ivory-deep) 100%);
  text-align: center;
  min-height: 88vh;
  display: flex; align-items: center; justify-content: center;
}
.hero-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.hero-logo { width: min(420px, 82vw); height: auto; }
.hero-headline { font-size: clamp(2.2rem, 7vw, 4rem); color: var(--text); margin: 10px 0; }

/* Logo formation on load */
.js .hero-logo { animation: logoForm 1.5s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.js .hero-headline { animation: heroRise 0.9s ease 0.95s both; }
@keyframes logoForm {
  0%   { opacity: 0; transform: scale(0.84) translateY(10px); filter: blur(16px); }
  55%  { opacity: 1; }
  100% { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
}
@keyframes heroRise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

/* Stats */
.stats { background: var(--plum); color: var(--cream-text); }
.stats-grid { display: flex; justify-content: space-around; gap: 24px; flex-wrap: wrap; text-align: center; }
.stat { display: flex; flex-direction: column; gap: 8px; min-width: 90px; }
.stat-num { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 6vw, 3.2rem); color: var(--gold-soft); }
.stat-label { color: var(--cream-text); opacity: 0.85; }

/* About */
.about { background: var(--ivory); }
.about-grid { display: grid; grid-template-columns: 1fr; gap: clamp(24px, 5vw, 56px); align-items: center; }
.about-photo img { width: 100%; height: auto; border-radius: 14px; box-shadow: 0 18px 50px rgba(46,28,43,0.18); object-fit: cover; }
.about-headline { font-size: clamp(1.8rem, 5vw, 2.6rem); margin: 6px 0; }
.about-role { color: var(--text-soft); margin-bottom: 18px; }
.about-text { margin-bottom: 16px; max-width: 56ch; color: var(--text); }
@media (min-width: 760px) {
  .about-grid { grid-template-columns: 0.9fr 1.1fr; }
}

/* Services */
.services { background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-deep) 100%); text-align: center; }
.center-text { display: block; text-align: center; }
.svc-heading { display: flex; align-items: center; gap: 18px; }
.svc-heading::before, .svc-heading::after { content: ""; flex: 1; height: 1px; background: var(--gold); opacity: 0.35; }
.services-title { font-size: clamp(1.6rem, 5vw, 2.4rem); margin: 10px 0 18px; }
.services-grid {
  list-style: none; display: grid; gap: 16px; margin-top: 40px;
  grid-template-columns: 1fr;
}
.svc-card {
  display: flex; align-items: center; gap: 14px; text-align: left;
  background: rgba(255,255,255,0.55); border: 1px solid rgba(176,141,79,0.25);
  border-radius: 12px; padding: 20px 22px; min-height: 72px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.svc-card:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(46,28,43,0.12); }
.svc-ic {
  width: 34px; height: 34px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  border-radius: 9px;
  background: linear-gradient(150deg, var(--ivory) 0%, var(--ivory-deep) 100%);
  border: 1px solid rgba(176,141,79,0.3);
  color: var(--gold);
  transition: background 0.28s ease, color 0.22s ease, transform 0.22s ease;
}
.svc-ic svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.svc-card:hover .svc-ic { background: linear-gradient(150deg, var(--gold-soft), var(--gold)); color: #fff; transform: scale(1.06) rotate(-3deg); }
.svc-name { font-weight: 500; color: var(--text); }
@media (min-width: 600px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

/* Bespoke */
.bespoke { background: var(--plum); color: var(--cream-text); text-align: center; }
.bespoke-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.bespoke-title { font-size: clamp(1.8rem, 6vw, 3rem); color: var(--cream-text); margin: 6px 0; }
.bespoke-sub { color: var(--cream-text); opacity: 0.8; }
.bespoke-tags { color: var(--gold-soft); }

/* Contact */
.contact { background: var(--ivory); text-align: center; padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(40px, 6vw, 72px); }
.contact-inner { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.contact-title { font-size: clamp(1.5rem, 4vw, 2.1rem); max-width: none; }
.contact-cta { margin-top: 8px; }
.contact-email { margin-top: 6px; letter-spacing: 0.02em; }
@media (min-width: 760px) { .contact-title { white-space: nowrap; } }
.contact-details { display: flex; align-items: center; gap: 22px; margin-top: 26px; flex-wrap: wrap; justify-content: center; }
.contact-qr { width: 120px; height: 120px; border-radius: 10px; border: 1px solid rgba(176,141,79,0.3); background: #fff; padding: 6px; }
.contact-list { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 6px; }
.contact-list a { color: var(--text); text-decoration: none; }
.contact-list a:hover { color: var(--gold); }

/* Footer */
.site-footer { background: var(--plum); color: var(--cream-text); padding: 28px var(--pad); }
.footer-inner { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.footer-url { color: var(--cream-text); opacity: 0.7; font-size: 0.85rem; }

/* Reveal animation */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .js .hero-logo, .js .hero-headline { animation: none; }
  html { scroll-behavior: auto; }
}
