/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #1a1a1a;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2vw, 2rem); }
p { color: #4a4a4a; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
.btn-primary:hover { background: #b08d57; border-color: #b08d57; }
.btn-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover { background: #fff; color: #1a1a1a; }
.btn-dark-outline { background: transparent; color: #1a1a1a; border-color: #1a1a1a; }
.btn-dark-outline:hover { background: #1a1a1a; color: #fff; }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 4px;
  transition: gap 0.3s ease;
}
.link-arrow:hover { gap: 14px; }

/* ---------- Top Utility Bar ---------- */
.utility-bar {
  background: #1a1a1a;
  color: #d4d4d4;
  font-size: 0.8rem;
  padding: 8px 0;
}
.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.utility-bar a { transition: color 0.2s; }
.utility-bar a:hover { color: #b08d57; }
.utility-links { display: flex; gap: 24px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
  border-bottom: 1px solid #ececec;
}
.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 56px; width: auto; }
.logo-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #1a1a1a;
}
.main-nav { display: flex; gap: 36px; align-items: center; }
.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #1a1a1a;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #b08d57;
  transition: width 0.3s ease;
}
.main-nav a:hover::after { width: 100%; }
.main-nav a:hover { color: #b08d57; }
.menu-toggle { display: none; font-size: 1.5rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}
.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.9;
}
.hero h1 {
  color: #fff;
  margin-bottom: 24px;
  font-style: italic;
}
.hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.125rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Section heading ---------- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #b08d57;
  margin-bottom: 16px;
  font-weight: 500;
}
.section-header h2 { margin-bottom: 16px; }

/* ---------- Service Collections ---------- */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.collection-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  background: #f5f5f0;
}
.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.collection-card:hover img { transform: scale(1.05); }
.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: #fff;
}
.collection-overlay h3 {
  color: #fff;
  margin-bottom: 8px;
  font-style: italic;
}
.collection-overlay p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.collection-cta {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.7);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: border-color 0.2s;
}
.collection-card:hover .collection-cta { border-color: #b08d57; color: #b08d57; }

/* ---------- Promo Banner ---------- */
.promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: #f5f1ea;
}
.promo-image { height: 100%; }
.promo-image img { width: 100%; height: 100%; object-fit: cover; min-height: 480px; }
.promo-content { padding: 80px 64px; }
.promo-content .section-eyebrow { text-align: left; }
.promo-content h2 { margin-bottom: 24px; }
.promo-content p { margin-bottom: 32px; font-size: 1.05rem; }
.promo-reverse .promo-image { order: 2; }

/* ---------- Feature Blocks (large image + white card anchored to corner) ---------- */
.feature-block {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}
.feature-block-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.feature-block-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-card {
  position: absolute;
  bottom: 64px;
  left: 0;
  z-index: 2;
  background: #ffffff;
  padding: 56px 48px;
  width: min(520px, 92%);
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.feature-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.feature-block.right .feature-card {
  left: auto;
  right: 0;
}
.feature-card .section-eyebrow {
  text-align: left;
  margin-bottom: 12px;
}
.feature-card h2 {
  font-style: italic;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e5e5e5;
}
.feature-card .feature-description {
  color: #4a4a4a;
  font-size: 1.05rem;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e5e5e5;
}
.feature-specs {
  margin-bottom: 36px;
}
.feature-specs div {
  font-size: 0.95rem;
  color: #1a1a1a;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.feature-specs div:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .feature-block { min-height: 640px; }
  .feature-card {
    padding: 36px 28px;
    bottom: 24px;
    width: calc(100% - 32px);
    left: 16px;
  }
  .feature-block.right .feature-card { right: 16px; left: auto; }
}

/* ---------- House & Land Packages ---------- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.package-card {
  background: #fff;
  border: 1px solid #ececec;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.package-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.package-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.package-image img { width: 100%; height: 100%; object-fit: cover; }
.package-body { padding: 24px; }
.package-location {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #b08d57;
  margin-bottom: 8px;
}
.package-body h3 { font-size: 1.5rem; margin-bottom: 12px; }
.package-specs {
  display: flex;
  gap: 20px;
  margin: 16px 0;
  padding: 16px 0;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  font-size: 0.875rem;
  color: #666;
}
.package-specs span { display: flex; align-items: center; gap: 6px; }
.package-price { font-size: 1.25rem; font-weight: 500; color: #1a1a1a; margin-top: 12px; }
.package-price small {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: #888;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* ---------- Why Choose Us ---------- */
.why-section { background: #1a1a1a; color: #fff; }
.why-section h2, .why-section .section-eyebrow { color: #fff; }
.why-section .section-eyebrow { color: #b08d57; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 40px;
}
.why-item { text-align: center; }
.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #b08d57;
  border-radius: 50%;
  font-size: 1.5rem;
  color: #b08d57;
}
.why-item h3 { color: #fff; font-size: 1.4rem; margin-bottom: 12px; }
.why-item p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }

/* ---------- Display invite ---------- */
.display-invite {
  position: relative;
  height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.display-invite img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.display-invite::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2;
}
.display-invite-content { position: relative; z-index: 3; max-width: 700px; padding: 0 24px; }
.display-invite h2 { color: #fff; font-style: italic; margin-bottom: 20px; }
.display-invite p { color: rgba(255,255,255,0.9); margin-bottom: 32px; font-size: 1.1rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: #111;
  color: #aaa;
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 64px; margin-bottom: 16px; }
.footer-brand p { color: #aaa; font-size: 0.9rem; margin-bottom: 8px; }
.footer-col h4 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #aaa; font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: #b08d57; }
.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: #777;
}

/* ---------- Intro / Centered copy section ---------- */
.intro-section { padding: 80px 0; text-align: center; background: #fff; }
.intro-section .container { max-width: 860px; }
.intro-section h2 { margin-bottom: 24px; font-style: italic; }
.intro-section p { font-size: 1.1rem; margin-bottom: 32px; }

/* ---------- Promo Banner full-width ---------- */
.promo-banner {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.promo-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.promo-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 2;
}
.promo-banner-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding: 64px 24px;
}
.promo-banner h2 { color: #fff; font-style: italic; margin-bottom: 16px; }
.promo-banner p { color: rgba(255,255,255,0.92); font-size: 1.05rem; margin-bottom: 24px; }

/* ---------- 3-card promo row ---------- */
.cards-row { padding: 80px 0; background: #fff; }
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.promo-card {
  background: #fff;
  display: flex;
  flex-direction: column;
}
.promo-card-img { aspect-ratio: 4/3; overflow: hidden; }
.promo-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.promo-card:hover .promo-card-img img { transform: scale(1.04); }
.promo-card-body { padding: 28px 4px; }
.promo-card h3 { font-size: 1.6rem; margin-bottom: 12px; font-style: italic; }
.promo-card p { color: #4a4a4a; font-size: 0.95rem; margin-bottom: 16px; }

/* ---------- Awards strip ---------- */
.awards-strip {
  background: #faf8f4;
  padding: 64px 0;
  text-align: center;
}
.awards-strip .section-eyebrow { color: #b08d57; }
.awards-strip h2 { max-width: 800px; margin: 0 auto 24px; font-style: italic; }
.awards-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 32px;
  flex-wrap: wrap;
  align-items: center;
}
.award-badge {
  width: 96px;
  height: 96px;
  border: 2px solid #b08d57;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: #b08d57;
  text-align: center;
  padding: 8px;
  line-height: 1.2;
}

/* ---------- 3 feature value cards (Better Floorplans/Inclusions/Care) ---------- */
.value-cards { padding: 80px 0; background: #fff; }
.value-card {
  background: #faf8f4;
  padding: 48px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.value-card h3 { font-size: 1.8rem; font-style: italic; margin-bottom: 16px; }
.value-card p { color: #4a4a4a; margin-bottom: 24px; flex-grow: 1; }
.value-card-icon {
  width: 64px;
  height: 64px;
  border: 1px solid #b08d57;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b08d57;
  font-size: 1.6rem;
  margin-bottom: 24px;
}

/* ---------- KDR Promo (image + text two-col) ---------- */
.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
}
.split-feature-image img { width: 100%; height: 100%; object-fit: cover; min-height: 460px; }
.split-feature-content { padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; }
.split-feature-content h2 { margin-bottom: 24px; font-style: italic; }
.split-feature-content p { margin-bottom: 28px; font-size: 1.05rem; }
.split-feature.reverse .split-feature-image { order: 2; }

/* ---------- Mission ---------- */
.mission { padding: 96px 0; background: #fff; text-align: center; }
.mission .container { max-width: 980px; }
.mission h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-style: italic;
  margin-bottom: 40px;
  line-height: 1.3;
}
.mission-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  text-align: left;
}
.mission-row img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.mission-row p { font-size: 1.05rem; }

/* ---------- Testimonials ---------- */
.testimonials { padding: 80px 0; background: #faf8f4; }
.testimonial-card {
  background: #fff;
  padding: 40px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testimonial-stars { color: #b08d57; font-size: 1.1rem; letter-spacing: 4px; margin-bottom: 16px; }
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: #1a1a1a;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}
.testimonial-author { font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; color: #666; }
.testimonial-author strong { display: block; color: #1a1a1a; margin-bottom: 4px; }

/* ---------- Content hub (blog cards) ---------- */
.content-hub { padding: 80px 0; background: #fff; }
.content-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.article-card { display: flex; flex-direction: column; }
.article-card-img { aspect-ratio: 4/3; overflow: hidden; }
.article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.article-card:hover .article-card-img img { transform: scale(1.05); }
.article-card-body { padding: 20px 0; }
.article-tag {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b08d57;
  margin-bottom: 10px;
  font-weight: 500;
}
.article-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-style: italic;
  line-height: 1.3;
}
.article-card p { font-size: 0.9rem; color: #666; margin-bottom: 14px; }

/* ---------- Newsletter signup ---------- */
.newsletter {
  background: #1a1a1a;
  color: #fff;
  padding: 72px 0;
  text-align: center;
}
.newsletter h2 { color: #fff; font-style: italic; margin-bottom: 16px; }
.newsletter p { color: rgba(255,255,255,0.75); margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.newsletter-form {
  display: flex;
  max-width: 520px;
  margin: 0 auto;
  gap: 0;
}
.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  font-family: inherit;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: #fff;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { border-color: #b08d57; }
.newsletter-form button {
  padding: 16px 28px;
  background: #b08d57;
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: #cfa872; }

@media (max-width: 900px) {
  .cards-grid-3 { grid-template-columns: 1fr; }
  .content-grid-4 { grid-template-columns: 1fr 1fr; }
  .split-feature { grid-template-columns: 1fr; }
  .split-feature.reverse .split-feature-image { order: 0; }
  .split-feature-content { padding: 48px 24px; }
  .mission-row { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; gap: 12px; }
}
@media (max-width: 600px) {
  .content-grid-4 { grid-template-columns: 1fr; }
}

/* ---------- Under Construction page ---------- */
.uc-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  background: #faf8f4;
}
.uc-content { max-width: 600px; }
.uc-content .section-eyebrow { color: #b08d57; }
.uc-content h1 { font-style: italic; margin-bottom: 16px; }
.uc-content p { margin-bottom: 32px; font-size: 1.1rem; }
.uc-icon {
  font-size: 4rem;
  margin-bottom: 24px;
  color: #b08d57;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid #ececec;
  }
  .main-nav.open { display: flex; }
  .menu-toggle { display: block; }
  .promo { grid-template-columns: 1fr; }
  .promo-reverse .promo-image { order: 0; }
  .promo-content { padding: 48px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero { height: 80vh; min-height: 500px; }
  .utility-links { display: none; }
}
@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
}
/* ---------- Inner Page Hero ---------- */
.inner-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.inner-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.62));
  z-index: 2;
}
.inner-hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
  padding: 0 24px;
}
.inner-hero h1 {
  color: #fff;
  font-style: italic;
  margin-bottom: 22px;
}
.inner-hero p {
  color: rgba(255,255,255,.88);
  font-size: 1.12rem;
  max-width: 680px;
  margin: 0 auto;
}

/* ---------- About Us Page ---------- */
.about-story-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 72px;
  align-items: start;
}
.about-story-grid p + p { margin-top: 18px; }
.values-section { background: #faf8f4; }
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.value-card {
  background: #fff;
  padding: 38px 32px;
  border: 1px solid #eee7dc;
  transition: transform .3s ease, box-shadow .3s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,.08); }
.value-card span,
.process-grid span {
  display: block;
  color: #b08d57;
  letter-spacing: .22em;
  font-size: .78rem;
  margin-bottom: 18px;
}
.value-card h3,
.process-grid h3 { margin-bottom: 12px; font-style: italic; }

/* ---------- Services Page ---------- */
.services-page-section { background: #fff; }
.inner-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.inner-service-card {
  padding: 38px 30px;
  border: 1px solid #eee7dc;
  background: #fff;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background .3s ease, transform .3s ease;
}
.inner-service-card:hover { background: #faf8f4; transform: translateY(-6px); }
.inner-service-card h3 { font-style: italic; margin-bottom: 14px; }
.inner-service-card p { margin-bottom: 26px; }
.process-section { background: #faf8f4; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.process-grid > div { background: #fff; padding: 36px 30px; border-left: 3px solid #b08d57; }

/* ---------- Gallery Page ---------- */
.gallery-page-section { background: #faf8f4; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery-grid img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}
.gallery-grid img:hover { transform: scale(1.025); filter: brightness(.94); }

/* ---------- FAQ Page ---------- */
.faq-page-section { background: #fff; }
.faq-wrap { max-width: 920px; }
.faq-item {
  border-bottom: 1px solid #e7dfd3;
  padding: 22px 0;
}
.faq-item summary {
  cursor: pointer;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  color: #1a1a1a;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: #b08d57; font-family: 'Inter', sans-serif; }
.faq-item[open] summary::after { content: '–'; }
.faq-item p { padding-top: 16px; max-width: 760px; }

/* ---------- Contact & Quote Pages ---------- */
.contact-page-section,
.quote-page-section { background: #faf8f4; }
.contact-grid,
.quote-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card,
.quote-note {
  background: #fff;
  padding: 42px 36px;
  border: 1px solid #eee7dc;
}
.contact-info-card h2 { font-style: italic; margin-bottom: 18px; }
.contact-info-card ul { list-style: none; margin-top: 28px; display: grid; gap: 14px; }
.contact-info-card a { color: #b08d57; }
.contact-form {
  background: #fff;
  padding: 42px 36px;
  border: 1px solid #eee7dc;
  display: grid;
  gap: 16px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #ddd5ca;
  background: #fff;
  font: inherit;
  color: #1a1a1a;
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: #b08d57; }
.contact-form textarea { min-height: 150px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-note { margin-top: 28px; color: #4a4a4a; }

/* ---------- Shared CTA ---------- */
.quote-cta {
  background: #1a1a1a;
  padding: 78px 0;
  text-align: center;
  color: #fff;
}
.quote-cta h2 { color: #fff; font-style: italic; margin-bottom: 14px; }
.quote-cta p { color: rgba(255,255,255,.75); margin-bottom: 30px; }

/* ---------- Inner Page Responsive ---------- */
@media (max-width: 1000px) {
  .about-story-grid,
  .contact-grid,
  .quote-grid { grid-template-columns: 1fr; gap: 34px; }
  .inner-service-grid,
  .value-grid,
  .process-grid,
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .inner-hero { min-height: 430px; }
  .inner-hero p { font-size: 1rem; }
  .inner-service-grid,
  .value-grid,
  .process-grid,
  .gallery-grid,
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid img { height: 280px; }
  .contact-form,
  .contact-info-card,
  .quote-note { padding: 30px 22px; }
  .faq-item summary { font-size: 1.25rem; }
}
