:root {
  --background: #f8f3ee;
  --foreground: #2f1f1d;
  --card: #ffffff;
  --primary: #7a0f1e;
  --primary-foreground: #fffaf7;
  --muted: #f1e4dd;
  --muted-foreground: #5b413b;
  --gold: #d9b778;
  --gold-soft: #f1dfbb;
  --blush: #f7e7e5;
  --border: rgba(122, 15, 30, 0.12);
  --shadow-luxe: 0 30px 80px -20px rgba(122, 15, 30, 0.35);
  --shadow-soft: 0 10px 40px -12px rgba(122, 15, 30, 0.15);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

.container-luxe {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
}

.gold-rule {
  display: inline-block;
  width: 3rem;
  height: 1px;
  background: var(--gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(248, 243, 238, 0.8);
  border-bottom: 1px solid var(--border);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: Georgia, serif;
}

.brand-mark strong {
  display: block;
  font-size: 1.5rem;
}

.brand-mark small {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.brand-crown {
  color: var(--gold);
  font-size: 1.4rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--primary);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-luxe);
}

.button-secondary {
  border-color: rgba(122, 15, 30, 0.26);
  background: rgba(255,255,255,0.2);
}

.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--blush);
}

.hero-visual {
  position: absolute;
  inset: 0 0 0 35%;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 231, 229, 0.96) 0%, rgba(247, 231, 229, 0.82) 32%, rgba(247, 231, 229, 0.32) 100%);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 92vh;
  max-width: 650px;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-content h1 {
  margin-top: 1.3rem;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.9;
}

.tagline {
  margin-top: 0.4rem;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  color: var(--primary);
}

.intro {
  max-width: 36rem;
  margin-top: 1.7rem;
  color: var(--muted-foreground);
  font-size: 1.08rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}

.content-section,
.portfolio-section,
.pricing-section,
.testimonial-section,
.cta-section {
  padding: 7rem 0;
}

.split-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.split-grid h2,
.section-title h2,
.section-head h2,
.cta-box h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-top: 1rem;
}

.split-grid p,
.cta-box p {
  color: var(--muted-foreground);
  font-size: 1.08rem;
  margin-top: 1.5rem;
}

.specialties ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 2rem;
}

.specialties li {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--border);
  font-family: Georgia, serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.specialties li::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.8rem;
}

.portfolio-section {
  background: rgba(247, 231, 229, 0.45);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.section-head a {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 700;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.portfolio-grid figure {
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow-soft);
  border-radius: 0.2rem;
}

.portfolio-grid figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.portfolio-grid figure:hover img {
  transform: scale(1.05);
}

.portfolio-grid figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
}

.portfolio-grid figcaption span {
  font-family: Georgia, serif;
  font-size: 1.7rem;
}

.portfolio-grid figcaption small {
  color: var(--muted-foreground);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lifted {
  transform: translateY(2rem);
}

.section-title {
  max-width: 40rem;
}

.section-title.center {
  margin: 0 auto 2rem;
  text-align: center;
}

.price-list {
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.price-list div {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--border);
}

.price-list div:first-child {
  border-top: none;
}

.price-list span {
  font-family: Georgia, serif;
  font-size: clamp(1.5rem, 2vw, 2.4rem);
}

.price-list i {
  flex: 1;
  border-bottom: 1px dashed rgba(122, 15, 30, 0.2);
  transform: translateY(-0.38rem);
}

.price-list strong {
  color: var(--primary);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-grid blockquote {
  margin: 0;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--border);
  font-size: 1.08rem;
  color: var(--muted-foreground);
}

.testimonial-grid footer {
  margin-top: 1.6rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.cta-box {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, var(--blush), rgba(255,255,255,0.6));
  border: 1px solid var(--border);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.contact-details {
  display: grid;
  gap: 0.4rem;
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.22);
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-shell strong {
  font-family: Georgia, serif;
  font-size: 1.5rem;
}

.footer-shell p {
  margin-top: 0.5rem;
  color: var(--muted-foreground);
}

.footer-links {
  display: flex;
  gap: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--muted-foreground);
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .split-grid,
  .portfolio-grid,
  .testimonial-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    inset: 0;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(247, 231, 229, 0.9), rgba(247, 231, 229, 0.8));
  }

  .hero-content {
    max-width: 100%;
    align-items: flex-start;
    text-align: left;
  }

  .lifted {
    transform: none;
  }

  .section-head,
  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 540px) {
  .button {
    width: 100%;
  }

  .button-row {
    width: 100%;
  }

  .specialties ul {
    grid-template-columns: 1fr;
  }

  .nav-shell {
    padding: 0.75rem 0;
  }

  .site-header {
    position: static;
  }
}
