:root {
  --navy: #16223f;
  --navy-deep: #0e1728;
  --navy-soft: #24345a;
  --gold: #cda663;
  --gold-dark: #a9843f;
  --cream: #faf7f1;
  --white: #ffffff;
  --gray-block: #e0ddd5;
  --gray-block-dark: #c9c6bc;
  --text-dark: #232838;
  --text-muted: #666b7c;
  --radius: 6px;
  --shadow: 0 14px 34px rgba(14, 23, 40, 0.12);
  --heading-font: 'Cormorant Garamond', Georgia, serif;
  --body-font: 'Karla', Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--body-font);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.65;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--heading-font);
  color: var(--navy);
  font-weight: 700;
}

.section-eyebrow, .eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.3rem;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 50px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { background: var(--gold-dark); }

.btn-outline {
  border-color: var(--navy);
  color: var(--navy);
  margin-top: 10px;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-call {
  background: var(--gold);
  color: var(--navy-deep);
  padding: 10px 20px;
}
.btn-call:hover { background: var(--gold-dark); }

.btn-lg { padding: 16px 34px; }
.btn-block { width: 100%; justify-content: center; }

.utility-bar {
  background: var(--navy-deep);
  color: #aab0c4;
  font-size: 0.82rem;
}
.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
}
.utility-left { display: flex; gap: 24px; align-items: center; }
.utility-left a { display: inline-flex; align-items: center; gap: 6px; }
.utility-left a:hover { color: var(--gold); }
.utility-right { display: flex; gap: 14px; }
.utility-right a:hover { color: var(--gold); }
.utility-address { display: inline-flex; align-items: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.28);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  display: block;
  height: 58px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px 2px rgba(205, 166, 99, 0.45);
}

.logo-lg img {
  height: 96px;
  border-radius: 14px;
}

.logo-color img {
  filter: none;
}

.main-nav { display: flex; gap: 24px; }
.main-nav a { color: #dfe2ec; font-size: 0.95rem; font-weight: 600; }
.main-nav a:hover { color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--white); }

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  background: var(--navy-soft);
}

.hero-text {
  color: var(--white);
  padding: 90px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero .eyebrow { color: var(--gold); }

.hero h1 {
  font-size: 3rem;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-tagline {
  color: #cfd3e0;
  max-width: 420px;
  margin-bottom: 34px;
  font-size: 1.02rem;
}

.hero-contact-buttons {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.hero-mini-stats {
  display: flex;
  gap: 36px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-mini-stats div { display: flex; flex-direction: column; }
.hero-mini-stats strong {
  font-family: var(--heading-font);
  font-size: 1.6rem;
  color: var(--gold);
}
.hero-mini-stats span {
  font-size: 0.75rem;
  color: #b7bbcd;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-image-placeholder {
  background: linear-gradient(135deg, #4a5a80 0%, #2a3554 100%);
  position: relative;
}
.hero-image-placeholder::after {
  content: "Image placeholder: renovated interior";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
}

.page-content { padding: 110px 0; text-align: center; min-height: 50vh; }
.page-content .section-title { margin-bottom: 24px; }
.page-content .section-subtitle { margin-bottom: 34px; }

.page-body {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: left;
}
.page-body p {
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.7;
}
.page-body p:last-child { margin-bottom: 0; }
.page-body h2 { margin: 30px 0 14px; font-size: 1.2rem; }
.page-body ol.terms-list { padding-left: 22px; margin: 0 0 18px; }
.page-body ol.terms-list li { color: var(--text-muted); margin-bottom: 14px; line-height: 1.7; }
.page-body ol.terms-list li:last-child { margin-bottom: 0; }

.services { padding: 110px 0; text-align: center; }
.section-subtitle { margin-left: auto; margin-right: auto; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  text-align: left;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #ece7db;
}

.service-image-placeholder {
  height: 150px;
  background: var(--gray-block);
  position: relative;
  border-bottom: 3px solid var(--gold);
}

.service-icon {
  position: absolute;
  bottom: -24px;
  left: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--white);
}

.service-body { padding: 40px 24px 28px; }

.service-body h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-body p { color: var(--text-muted); font-size: 0.93rem; }

.work { padding: 110px 0; text-align: center; background: var(--white); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  text-align: left;
}

.work-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #ece7db;
  border-top: 3px solid var(--gold);
}

.work-image-placeholder {
  aspect-ratio: 4 / 3;
  background: var(--gray-block);
  position: relative;
}
.work-image-placeholder::after {
  content: "Project photo placeholder";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b8a80;
  font-size: 0.82rem;
  text-align: center;
  padding: 12px;
}

.work-caption { padding: 20px 22px; }
.work-caption h4 {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 4px;
}
.work-caption span {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about { padding: 110px 0; background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p { color: var(--text-muted); margin-bottom: 18px; }

.about-image-stack {
  position: relative;
  height: 420px;
}

.about-image-placeholder {
  position: absolute;
  background: var(--gray-block);
  border: 1px solid var(--gray-block-dark);
  border-radius: var(--radius);
}
.about-image-placeholder::after {
  content: "Image placeholder";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b8a80;
  font-size: 0.8rem;
}

.about-image-1 { width: 78%; height: 78%; top: 0; left: 0; z-index: 1; }
.about-image-2 {
  width: 55%;
  height: 50%;
  bottom: 0;
  right: 0;
  z-index: 2;
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}

.reviews { padding: 110px 0; text-align: center; background: var(--cream); }

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  text-align: left;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 28px 30px;
  box-shadow: var(--shadow);
  position: relative;
  border-top: 3px solid var(--gold);
}

.avatar-placeholder {
  display: block;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gray-block);
  border: 1px solid var(--gray-block-dark);
  margin-bottom: 18px;
}

.stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; }

.review-card p { color: var(--text-dark); font-style: italic; margin-bottom: 22px; }

.review-author strong { display: block; font-size: 0.95rem; color: var(--navy); }
.review-author span { font-size: 0.8rem; color: var(--text-muted); }

.booking {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}

.booking-bg-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-soft) 100%);
}

.booking-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}

.booking .section-eyebrow { color: var(--gold); }
.booking .section-title { color: var(--white); }
.booking-intro p { color: #cfd4e0; }

.booking-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}

.form-row { margin-bottom: 20px; }

.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0;
}
.form-row-split > div { margin-bottom: 20px; }

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #ddd9cf;
  border-radius: 4px;
  font-family: var(--body-font);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
}

textarea { resize: vertical; }

.site-footer { background: var(--navy-deep); color: #b9bccb; padding: 80px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p { margin: 14px 0 22px; font-size: 0.9rem; max-width: 280px; }

.footer-info h4, .footer-links h4, .footer-hours h4 {
  color: var(--white);
  font-family: var(--heading-font);
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.footer-info p { margin-bottom: 10px; font-size: 0.9rem; }
.footer-info a:hover { color: var(--gold); }

.footer-links { display: flex; flex-direction: column; }
.footer-links a { margin-bottom: 12px; font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold); }

.footer-hours p { margin-bottom: 8px; font-size: 0.9rem; }

.social-icons { display: flex; gap: 12px; }

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.icon-btn:hover { background: var(--gold); color: var(--navy-deep); }

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.8rem;
  color: #7d8296;
}

.mobile-call-fab {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 200;
}

.hero-image-placeholder img,
.service-image-placeholder img,
.work-image-placeholder img,
.about-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.has-image::after { display: none; }

/* Photo carousel: swapped in over a service/work placeholder whenever the
   item has 2+ photos (a single photo just fills the placeholder directly). */
.image-carousel { position: absolute; inset: 0; overflow: hidden; }

.carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.45s ease;
}
.carousel-slide.active { opacity: 1; z-index: 1; }

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(14, 23, 40, 0.55);
  color: var(--white);
  border: none;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.2s ease, background 0.2s ease;
}
.image-carousel:hover .carousel-arrow,
.image-carousel:focus-within .carousel-arrow { opacity: 1; }
.carousel-arrow:hover { background: rgba(14, 23, 40, 0.85); }
.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }

.carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  border: none;
  padding: 0;
  cursor: pointer;
}
.carousel-dot.active { background: var(--white); }

@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 900px) {
  .utility-address { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-image-placeholder { min-height: 280px; order: -1; }
  .hero-text { padding: 60px 32px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-stack { order: -1; height: 320px; }
  .review-grid { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .main-nav.open { max-height: 460px; }
  .main-nav a {
    padding: 16px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-toggle { display: flex; }
  .btn-call span { display: none; }
  .btn-call { padding: 10px; }
  .logo img { height: 42px; }
  .logo-lg img { height: 72px; }

  .hero h1 { font-size: 2.2rem; }
  .service-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .form-row-split { grid-template-columns: 1fr; }
  .services, .work, .about, .reviews, .booking { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .mobile-call-fab { display: flex; }
}
