:root {
  --bg: #f6ede4;
  --surface: rgba(255, 248, 241, 0.86);
  --text: #3d261d;
  --muted: #75544b;
  --line: rgba(114, 73, 53, 0.14);
  --accent: #a96f52;
  --accent-deep: #7f4f38;
  --gold: #d7af78;
  --shadow: 0 24px 60px rgba(95, 58, 39, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.72), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(245, 209, 182, 0.5), transparent 26%),
    linear-gradient(145deg, #f8efe6 0%, #f3e4d6 44%, #e7d0c2 100%);
}

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

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

.page-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.25rem 0 2.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 246, 239, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(95, 58, 39, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-avatar {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 26px rgba(95, 58, 39, 0.14);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name,
.site-nav a,
.button,
.contact-label {
  letter-spacing: 0.01em;
}

.brand-name {
  font-weight: 800;
  font-size: 0.98rem;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.3;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.1rem;
}

.site-nav a {
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent-deep);
}

.hero,
.services,
.about,
.gallery,
.reviews,
.experience,
.contact {
  margin-top: 1.6rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: center;
  min-height: calc(100vh - 8rem);
}

.hero-copy,
.logo-card,
.service-card,
.about-panel,
.gallery-card,
.note-card,
.experience-card,
.contact-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.hero-copy,
.about-panel,
.contact-card {
  border-radius: var(--radius-lg);
}

.hero-copy {
  padding: 2.6rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--accent-deep);
  font-size: 0.83rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 0.95;
}

h1 {
  max-width: 8ch;
  font-size: clamp(3.2rem, 7vw, 6.3rem);
}

h2 {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
}

h3 {
  margin: 0 0 0.85rem;
  font-size: 1.2rem;
}

.hero-text,
.section-heading,
.service-card p,
.about-panel p,
.gallery-card p,
.note-card p,
.experience-card p,
.contact-copy p,
.contact-value,
.service-note p,
.site-footer p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 56ch;
  margin: 1.25rem 0 0;
  font-size: 1.06rem;
}

.hero-actions,
.hero-meta,
.gallery-actions,
.review-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-actions {
  margin-top: 1.8rem;
}

.hero-meta {
  margin-top: 1rem;
}

.gallery-actions,
.review-actions,
.contact-actions {
  margin-top: 1.5rem;
}

.hero-meta span,
.hero-meta a {
  display: inline-flex;
  align-items: center;
  min-height: 2.6rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--muted);
  border: 1px solid rgba(169, 111, 82, 0.12);
  font-size: 0.93rem;
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fffaf5;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  box-shadow: 0 16px 30px rgba(128, 83, 57, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(169, 111, 82, 0.16);
}

.hero-highlights {
  display: grid;
  gap: 0.85rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-highlights li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text);
  font-weight: 500;
}

.hero-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
  box-shadow: 0 0 0 5px rgba(215, 175, 120, 0.14);
}

.logo-card {
  position: relative;
  isolation: isolate;
  padding: 2rem;
  border-radius: 38px;
  overflow: hidden;
}

.logo-card::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 13rem;
  height: 13rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 175, 120, 0.28) 0%, transparent 68%);
  filter: blur(12px);
  z-index: -1;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0.9rem;
  margin-bottom: 1rem;
  background: rgba(255, 251, 246, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
}

.lockup-avatar {
  width: 4.6rem;
  height: 4.6rem;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 14px 28px rgba(95, 58, 39, 0.14);
}

.logo-kicker {
  margin: 0;
  color: var(--accent-deep);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.logo-text h2 {
  margin-top: 0.55rem;
}

.logo-text p {
  margin: 0.9rem 0 0;
  max-width: 27ch;
  color: var(--muted);
}

.hero-logo {
  width: min(100%, 29rem);
  margin: 1rem auto 0;
  filter: drop-shadow(0 18px 26px rgba(126, 81, 58, 0.14));
}

.section-heading {
  max-width: 50rem;
  margin-bottom: 1.5rem;
}

.service-grid,
.review-grid,
.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.review-card,
.note-card,
.experience-card {
  border-radius: var(--radius-md);
  padding: 1.6rem;
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 1.15rem;
  border-radius: 50%;
  color: var(--accent-deep);
  background: rgba(215, 175, 120, 0.14);
  font-size: 0.84rem;
  font-weight: 800;
}

.service-note {
  margin-top: 1rem;
  padding: 0 0.2rem;
}

.service-note p {
  max-width: 48rem;
  margin: 0;
}

.gallery-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-photo-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.gallery-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-photo-card:hover img,
.gallery-photo-card:focus-within img {
  transform: scale(1.02);
}

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

.gallery-photo-tall {
  grid-row: span 2;
}

.review-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.review-quote {
  margin: 0;
  color: var(--text);
  line-height: 1.8;
  font-weight: 500;
}

.review-meta {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: 1rem;
}

.about-panel {
  padding: 2rem;
}

.about-panel p {
  margin: 1rem 0 0;
}

.about-notes {
  display: grid;
  gap: 1rem;
}

.experience-card {
  min-height: 100%;
}

.quote-card {
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(165deg, rgba(255, 251, 246, 0.94), rgba(247, 233, 219, 0.92));
}

.quote-card p {
  margin: 0;
  max-width: 18ch;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1.15;
  color: var(--text);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1rem;
  align-items: stretch;
}

.contact-copy {
  padding: 1rem 0.4rem 0 0;
}

.contact-card {
  display: grid;
  gap: 1rem;
  padding: 1.7rem;
}

.contact-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.contact-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-label {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text);
}

.contact-value {
  text-align: right;
}

.hours-list {
  display: grid;
  gap: 0.2rem;
}

.hours-list span {
  display: block;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  margin-top: 1.6rem;
  padding: 1.2rem 0.2rem 0;
  border-top: 1px solid rgba(114, 73, 53, 0.12);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms ease, transform 720ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero,
  .about,
  .contact,
  .service-grid,
  .gallery-photo-grid,
  .review-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .gallery-photo-wide,
  .gallery-photo-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    order: 2;
  }

  .hero-visual {
    order: 1;
  }

  .site-header {
    border-radius: 28px;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 1rem, 100%);
  }

  .site-header {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  .brand {
    width: 100%;
  }

  .site-nav {
    gap: 0.9rem;
  }

  .hero-copy,
  .logo-card,
  .service-card,
  .about-panel,
  .review-card,
  .note-card,
  .experience-card,
  .contact-card {
    padding: 1.35rem;
  }

  h1 {
    font-size: clamp(2.8rem, 16vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 2.7rem);
  }

  .contact-item {
    flex-direction: column;
  }

  .contact-value {
    text-align: left;
  }

  .logo-lockup {
    align-items: flex-start;
  }
}
