/* Timeless Interiors Ltd. — shared site styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #F8F5F0;
  --stone: #EDE8E1;
  --charcoal: #1E1E1C;
  --warm-mid: #7A6E62;
  --accent: #3B5249;
  --accent-light: #E8EFEC;
  --white: #FFFFFF;
  --border: rgba(30,30,28,0.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; }

a { color: inherit; }

/* ─── SKIP LINK ─── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--charcoal);
  color: var(--white);
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; }

/* ─── NAV ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img { height: 28px; width: auto; display: block; }
.nav-links { display: flex; gap: 26px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--warm-mid);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--charcoal); }
.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 13px !important;
  font-weight: 500 !important;
}
.nav-cta:hover { opacity: 0.88; }

/* ─── BREADCRUMBS ─── */
.breadcrumbs {
  padding: 18px 8vw 0;
  font-size: 13px;
  color: var(--warm-mid);
}
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumbs a { color: var(--warm-mid); text-decoration: none; }
.breadcrumbs a:hover { color: var(--accent); text-decoration: underline; }
.breadcrumbs li:not(:last-child)::after { content: '/'; margin-left: 6px; color: var(--border); }
.breadcrumbs li[aria-current] { color: var(--charcoal); }

/* ─── HERO ─── */
.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
}
.hero-text { padding: 64px 5vw 80px 8vw; }
.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: 17px;
  color: var(--warm-mid);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
  display: inline-block;
}
.btn-primary:hover { opacity: 0.85; }
.btn-ghost {
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--accent); border-color: var(--accent); }
.hero-image {
  background: var(--stone);
  height: 100%;
  min-height: 88vh;
  position: relative;
  overflow: hidden;
}
.hero-image img { width: 100%; height: 100%; min-height: 88vh; object-fit: cover; display: block; }
.trust-bar { display: flex; gap: 32px; margin-top: 48px; flex-wrap: wrap; }
.trust-item { display: flex; flex-direction: column; }
.trust-num { font-family: 'DM Serif Display', serif; font-size: 26px; color: var(--charcoal); line-height: 1; }
.trust-label { font-size: 12px; color: var(--warm-mid); margin-top: 4px; }

/* ─── PAGE HERO (subpages, no split image) ─── */
.page-hero { padding: 40px 8vw 64px; max-width: 860px; }
.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 18px;
}
.page-hero p { font-size: 17px; color: var(--warm-mid); max-width: 620px; }

/* ─── SECTION SHARED ─── */
section { padding: 96px 8vw; }
.section-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-sub { font-size: 16px; color: var(--warm-mid); max-width: 560px; margin-bottom: 56px; }

/* ─── SERVICES ─── */
.services { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.service-card { background: var(--white); padding: 40px 36px; transition: background 0.25s; }
.service-card:hover { background: var(--accent-light); }
.service-icon {
  width: 40px; height: 40px; background: var(--accent-light); border-radius: 4px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.service-icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 1.5; }
.service-card h3 { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--charcoal); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--warm-mid); line-height: 1.65; }
.service-link {
  display: inline-block; margin-top: 20px; font-size: 13px; font-weight: 500; color: var(--accent);
  text-decoration: none; letter-spacing: 0.02em; border-bottom: 1px solid transparent; transition: border-color 0.2s;
}
.service-link:hover { border-color: var(--accent); }

/* ─── WHY US ─── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-visual { background: var(--stone); border-radius: 8px; min-height: 440px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.why-visual img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; display: block; border-radius: 8px; }
.why-points { display: flex; flex-direction: column; gap: 32px; }
.why-point { display: flex; gap: 20px; }
.why-num { font-family: 'DM Serif Display', serif; font-size: 32px; color: var(--stone); line-height: 1; min-width: 36px; }
.why-point-text h4 { font-size: 16px; font-weight: 500; color: var(--charcoal); margin-bottom: 6px; }
.why-point-text p { font-size: 14px; color: var(--warm-mid); line-height: 1.65; }

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--charcoal); }
.testimonials .section-tag { color: #7BAF9A; }
.testimonials .section-title { color: var(--white); }
.testimonials .section-sub { color: rgba(255,255,255,0.5); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 28px; }
.stars { color: #E6A830; font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.review-text { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.reviewer { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.45); }
.reviewer strong { color: rgba(255,255,255,0.8); font-weight: 500; display: block; margin-bottom: 2px; }

/* ─── PROCESS ─── */
.process { background: var(--cream); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 20px; left: 12%; right: 12%; height: 1px; background: var(--border); }
.process-step { padding: 0 20px; }
.step-dot {
  width: 40px; height: 40px; border-radius: 50%; background: var(--accent-light); border: 1px solid var(--accent);
  display: flex; align-items: center; justify-content: center; font-family: 'DM Serif Display', serif; font-size: 16px;
  color: var(--accent); margin-bottom: 20px; position: relative; z-index: 1;
}
.process .step-dot { background: var(--cream); }
.process-step h4 { font-size: 15px; font-weight: 500; color: var(--charcoal); margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--warm-mid); line-height: 1.6; }

/* ─── FAQ (accordion, JS-free using <details>) ─── */
.faq-list { display: flex; flex-direction: column; gap: 2px; max-width: 760px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.faq-item + .faq-item { margin-top: 10px; }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 22px 28px; font-weight: 500; font-size: 16px; color: var(--charcoal);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 20px; color: var(--accent); flex-shrink: 0; transition: transform 0.2s; font-weight: 300;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 28px 24px; font-size: 15px; color: var(--warm-mid); line-height: 1.7; }

/* ─── BLOG ─── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 8px; overflow: hidden;
  text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: box-shadow 0.2s;
}
.blog-card:hover { box-shadow: 0 8px 24px rgba(30,30,28,0.08); }
.blog-card-img { background: var(--stone); height: 190px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card-date { font-size: 12px; color: var(--warm-mid); letter-spacing: 0.05em; text-transform: uppercase; }
.blog-card h3 { font-family: 'DM Serif Display', serif; font-size: 19px; color: var(--charcoal); line-height: 1.3; }
.blog-card p { font-size: 14px; color: var(--warm-mid); line-height: 1.6; }
.blog-card-link { font-size: 13px; font-weight: 500; color: var(--accent); margin-top: auto; }

.article { padding: 0 8vw 80px; max-width: 720px; margin: 0 auto; }
.article-meta { font-size: 13px; color: var(--warm-mid); margin-bottom: 12px; }
.article h1 { font-family: 'DM Serif Display', serif; font-size: clamp(30px, 4vw, 46px); line-height: 1.15; color: var(--charcoal); margin: 16px 0 28px; }
.article h2 { font-family: 'DM Serif Display', serif; font-size: 26px; color: var(--charcoal); margin: 40px 0 16px; }
.article h3 { font-size: 18px; font-weight: 500; color: var(--charcoal); margin: 28px 0 10px; }
.article p { font-size: 16px; color: var(--charcoal); margin-bottom: 18px; line-height: 1.8; }
.article ul, .article ol { margin: 0 0 18px 22px; color: var(--charcoal); }
.article li { margin-bottom: 8px; line-height: 1.7; }
.article figure { margin: 32px 0; }
.article figure img { width: 100%; border-radius: 8px; display: block; }
.article figcaption { font-size: 13px; color: var(--warm-mid); margin-top: 10px; }
.article-cta { background: var(--accent-light); border-radius: 8px; padding: 28px 32px; margin: 40px 0; }
.article-cta p { margin-bottom: 16px; }
.author-box { display: flex; gap: 16px; align-items: center; padding: 24px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 40px 0; }
.author-box img { width: 48px; height: 48px; border-radius: 50%; object-fit: contain; background: var(--stone); padding: 6px; }
.author-box strong { display: block; color: var(--charcoal); }
.author-box span { font-size: 13px; color: var(--warm-mid); }

/* ─── SERVICE PAGE VISUAL (icon accent, used when no on-site photo exists yet) ─── */
.service-visual {
  background: linear-gradient(160deg, #E8E3DC 0%, #D5CEC6 50%, #C8BEB4 100%);
  border-radius: 8px;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-visual svg { width: 96px; height: 96px; stroke: var(--accent); fill: none; stroke-width: 1; opacity: 0.55; }

/* ─── INCLUDES LIST ─── */
.includes-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px; max-width: 720px; margin-bottom: 8px; }
.includes-list li { list-style: none; display: flex; gap: 10px; font-size: 15px; color: var(--charcoal); align-items: flex-start; }
.includes-list li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* ─── LOCATION PAGES ─── */
.location-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.location-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 28px; text-decoration: none; color: inherit;
}
.location-card h3 { font-family: 'DM Serif Display', serif; font-size: 18px; margin-bottom: 8px; color: var(--charcoal); }
.location-card p { font-size: 14px; color: var(--warm-mid); }

/* ─── CTA ─── */
.cta-section { background: var(--accent); text-align: center; padding: 96px 8vw; }
.cta-section .section-tag { color: rgba(255,255,255,0.55); }
.cta-title { font-family: 'DM Serif Display', serif; font-size: clamp(28px, 4vw, 52px); color: var(--white); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 16px; }
.cta-sub { font-size: 16px; color: rgba(255,255,255,0.65); margin-bottom: 36px; }
.cta-disclaimer { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 14px; }

/* ─── CONTACT CARDS ─── */
.contact-cards { display: flex; gap: 32px; flex-wrap: wrap; }
.contact-card {
  display: flex; align-items: center; gap: 16px; background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; padding: 24px 32px; text-decoration: none; flex: 1; min-width: 220px;
}
.contact-card-icon { width: 44px; height: 44px; background: var(--accent-light); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card-icon svg { width: 20px; height: 20px; }
.contact-card-label { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--warm-mid); margin-bottom: 4px; }
.contact-card-value { font-size: 18px; font-family: 'DM Serif Display', serif; color: var(--charcoal); }

/* ─── MAP ─── */
.map-section { padding: 0; }
.map-wrapper { display: grid; grid-template-columns: 1fr 2fr; min-height: 420px; }
.map-info { background: var(--cream); padding: 56px 48px; display: flex; flex-direction: column; justify-content: center; gap: 28px; }
.map-info .section-tag { margin-bottom: 0; }
.map-info h2 { font-family: 'DM Serif Display', serif; font-size: 28px; color: var(--charcoal); line-height: 1.15; letter-spacing: -0.01em; }
.map-details { display: flex; flex-direction: column; gap: 16px; }
.map-detail { display: flex; gap: 14px; align-items: flex-start; }
.map-detail-icon { width: 36px; height: 36px; background: var(--accent-light); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.map-detail-icon svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 1.5; }
.map-detail-text { display: flex; flex-direction: column; gap: 2px; }
.map-detail-text span:first-child { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--warm-mid); }
.map-detail-text span:last-child { font-size: 14px; color: var(--charcoal); line-height: 1.5; }
.map-embed { position: relative; }
.map-embed iframe { width: 100%; height: 100%; min-height: 420px; border: none; display: block; filter: saturate(0.85); }

/* ─── FOOTER ─── */
footer { background: var(--charcoal); padding: 64px 8vw 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo img { height: 24px; width: auto; }
.footer-logo span { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--white); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.65; max-width: 260px; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: rgba(255,255,255,0.16); }
.footer-social svg { width: 15px; height: 15px; stroke: rgba(255,255,255,0.7); fill: none; stroke-width: 1.6; }
.footer-col h5 { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { min-height: 220px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .map-wrapper { grid-template-columns: 1fr; }
  .map-embed iframe { min-height: 300px; }
  .map-info { padding: 40px 6vw; }
}
@media (max-width: 540px) {
  section { padding: 64px 6vw; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}
