/* Without A Hitch Interiors — design system */

:root {
  --ivory: #f7f4ee;
  --cream: #efe9df;
  --paper: #fffdf9;
  --ink: #1c1a17;
  --ink-soft: #4a463f;
  /* These text colours meet WCAG AA against the ivory/paper surfaces. */
  --muted: #625c53;
  --gold: #c2a24c;
  --gold-deep: #6a5b2a;
  --forest: #232a24;
  --line: #e2dccf;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', system-ui, sans-serif;
  /* Typography weights are centralized so future maintainers can tune the
     editorial balance without hunting through individual components. */
  --weight-body: 400;
  --weight-ui: 600;
  --weight-heading: 600;
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: var(--weight-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
.media-picture, .hero-picture { display: block; width: 100%; height: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: var(--weight-heading); line-height: 1.1; margin: 0; }
p { margin: 0 0 1em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

/* Eyebrow label */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: var(--weight-ui);
  display: block;
  margin-bottom: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--sans); font-size: 0.78rem; font-weight: var(--weight-ui);
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.95rem 1.8rem; border: 1px solid transparent;
  cursor: pointer; transition: all 0.25s ease; background: none;
}
.btn .arrow { font-size: 1rem; transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translate(2px, -2px); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-deep); color: #fff; }
.btn-outline { border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--ivory); }
.btn-outline-light { border-color: rgba(255,255,255,0.6); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--ink); }
.btn-quote { padding: 0.7rem 1.3rem; }

/* Link with underline + arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: var(--weight-ui); letter-spacing: 0.1em;
  text-transform: uppercase; border-bottom: 1px solid var(--ink);
  padding-bottom: 0.35rem; transition: gap 0.25s ease;
}
.link-arrow:hover { gap: 0.85rem; }

/* Header */
.site-header {
  /* Inner pages need a solid contrast surface; the home page opts into the
     overlay treatment below because its hero image sits behind the header. */
  position: relative; z-index: 50; background: var(--forest);
  padding: 1.4rem 0;
}
.home-page .site-header { position: absolute; top: 0; left: 0; right: 0; background: transparent; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: flex; align-items: center; gap: 0.8rem; }
.site-logo { display: block; width: 84px; height: 84px; object-fit: contain; flex: 0 0 auto; }
.brand-mark {
  font-family: var(--serif); font-weight: 600; font-size: 1.5rem;
  color: var(--gold); letter-spacing: 0.04em;
  border-right: 1px solid rgba(194,162,76,0.4); padding-right: 0.8rem;
}
.brand-mark.light { color: var(--gold); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-size: 0.82rem; letter-spacing: 0.28em; text-transform: uppercase; color: #fff; font-weight: var(--weight-ui); }
.brand-sub { font-size: 0.62rem; letter-spacing: 0.42em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.main-nav ul { display: flex; gap: 2rem; }
.main-nav a {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em; color: #fff;
  padding: 0.3rem 0; position: relative;
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s ease;
}
.main-nav a:hover::after { width: 100%; }
.header-cta { color: #fff; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: #fff; margin: 5px 0; transition: 0.3s; }

/* Hero */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  color: #fff; padding: 8rem 0 5rem;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(20,18,15,0.78) 0%, rgba(20,18,15,0.45) 45%, rgba(20,18,15,0.15) 100%);
}
.hero-content { max-width: 640px; }
.hero .eyebrow { color: var(--gold); }
/* Manrope gives the hero's supporting copy the clean, contemporary contrast
   shown in the approved reference while Playfair remains the display face. */
.hero .eyebrow,
.hero p.lead {
  font-family: "Manrope", var(--sans);
}
.hero .eyebrow { font-weight: 600; }
/* The hero uses Playfair Display as its editorial display face. Keep the
   rest of the site on Cormorant so the heading change stays intentionally
   limited to the homepage's primary first impression. */
.hero h1 {
  font-family: "Playfair Display", var(--serif);
  font-size: 79px;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 1.4rem;
}
.hero p.lead { font-size: 18px; color: #fff; max-width: 480px; margin-bottom: 2.2rem; }
.hero-actions { display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }
.hero-meta {
  position: absolute; bottom: 2rem; left: 0; right: 0;
  display: flex; gap: 2.5rem; font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.8);
}
.hero-meta .container { display: flex; gap: 2.5rem; }

/* Section base */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-cream { background: var(--cream); }
.section-forest { background: var(--forest); color: #fff; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; margin-bottom: 3rem; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); max-width: 560px; }
.section-forest .eyebrow { color: var(--gold); }

/* Intro split */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.intro-grid h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.intro-copy p { color: var(--ink-soft); }

/* Room grid */
.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.room-card { position: relative; overflow: hidden; aspect-ratio: 4/5; display: block; }
.room-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.room-card:hover img { transform: scale(1.05); }
.room-card .room-label {
  position: absolute; left: 1.2rem; bottom: 1.2rem;
  background: var(--gold); color: var(--ink);
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: var(--weight-ui); padding: 0.7rem 1.1rem;
}

/* Services numbered list */
.services-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); }
.service-item { padding: 2.2rem 1.6rem 2.2rem 0; border-right: 1px solid var(--line); }
.service-item:last-child { border-right: 0; }
.service-num { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.1em; display: block; margin-bottom: 2.5rem; }
.service-item h3 { font-size: 1.5rem; margin-bottom: 0.8rem; }
.service-item p { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 1.2rem; }
.service-item .link-arrow { font-size: 0.72rem; }
/* Homepage service cards keep the editorial hierarchy while making each service an obvious, tappable destination. */
.home-services-section { background: var(--ivory); }
.home-services-head { margin-bottom: 3.5rem; }
.home-services-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.home-service-card {
  display: flex; flex-direction: column; min-height: 310px; padding: 1.6rem;
  color: var(--ink); background: var(--paper); border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.home-service-card:hover, .home-service-card:focus-visible {
  transform: translateY(-4px); border-color: var(--gold-deep);
  box-shadow: 0 12px 30px rgba(28, 26, 23, 0.08);
}
.home-service-card-number {
  display: block; margin-bottom: 2rem; color: var(--gold-deep);
  font-size: 0.78rem; font-weight: var(--weight-ui); letter-spacing: 0.14em;
}
.home-service-card-content { display: flex; flex: 1; flex-direction: column; align-items: flex-start; }
.home-service-card h3 { margin-bottom: 0.8rem; font-size: 1.45rem; }
.home-service-card-excerpt { display: block; color: var(--ink-soft); font-size: 0.92rem; line-height: 1.75; }
.home-service-card .link-arrow { margin-top: auto; padding-top: 1.5rem; font-size: 0.72rem; }
.services-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr); gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.services-hero-image { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream); }
.services-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.service-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.service-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(28,26,23,0.08); }
.service-card-image { aspect-ratio: 16 / 10; overflow: hidden; background: var(--cream); }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-image img { transform: scale(1.04); }
.service-card-image-empty { background: var(--forest); }
.service-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.service-card-body .service-num { margin-bottom: 1rem; }
.service-card-body .eyebrow { font-size: 0.64rem; margin-bottom: 0.7rem; }
.service-card h3 { font-size: 1.55rem; margin-bottom: 0.7rem; }
.service-card p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 1.3rem; }
.service-card .link-arrow { align-self: flex-start; margin-top: auto; font-size: 0.7rem; }

/* Project featured grid */
.feature-grid { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: 1fr 1fr; gap: 1.2rem; }
.feature-card { position: relative; overflow: hidden; display: block; color: #fff; }
.feature-card.large { grid-row: span 2; }
.feature-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.feature-card:hover img { transform: scale(1.04); }
.feature-card .feature-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20,18,15,0.85) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.6rem;
}
.feature-card .feature-cat { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-bottom: 0.4rem; }
.feature-card h3 { font-size: 1.6rem; color: #fff; }

/* Product grid */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.product-card { display: block; }
.product-card .product-img { aspect-ratio: 1; overflow: hidden; background: var(--cream); margin-bottom: 1rem; }
.product-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover img { transform: scale(1.05); }
.product-card h3 { font-size: 1.25rem; margin-bottom: 0.3rem; }
.product-card .price { font-size: 0.9rem; color: var(--gold-deep); font-weight: var(--weight-ui); letter-spacing: 0.04em; }
.product-card .price s { color: var(--muted); font-weight: var(--weight-body); margin-left: 0.5rem; }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial { border-top: 2px solid var(--gold); padding-top: 1.5rem; }
.testimonial .quote { font-family: var(--serif); font-size: 1.3rem; font-style: italic; line-height: 1.4; margin-bottom: 1.2rem; }
.testimonial .client { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
/* Dedicated reviews use compact cards so a growing collection remains easy to scan on every screen size. */
.reviews-intro { max-width: 700px; color: var(--ink-soft); font-size: 1.05rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.review-card { display: flex; flex-direction: column; min-height: 230px; padding: 1.5rem; background: var(--paper); border-top: 2px solid var(--gold); }
.review-card h2 { margin-bottom: 0.7rem; font-family: var(--sans); font-size: 1.1rem; font-weight: var(--weight-ui); }
.review-rating { margin-bottom: 1.2rem; color: var(--gold-deep); font-size: 1rem; letter-spacing: 0.12em; line-height: 1; }
.review-rating .empty { color: var(--line); }
.review-card blockquote { margin: 0; color: var(--ink-soft); font-size: 0.95rem; line-height: 1.7; }
.review-submit-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr); gap: clamp(2rem, 7vw, 7rem); align-items: start; }
.review-submit-grid h2 { margin: 0.8rem 0 1.2rem; font-size: clamp(2rem, 4vw, 3rem); }
.review-submit-grid > div > p { max-width: 34rem; color: var(--ink-soft); }
.review-submit-form { margin: 0; }
.review-consent { display: flex; gap: 0.7rem; align-items: flex-start; margin: 1.2rem 0; color: var(--ink-soft); font-size: 0.85rem; line-height: 1.5; }
.review-consent input { flex: 0 0 auto; margin-top: 0.2rem; accent-color: var(--gold-deep); }
.review-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* CTA band */
.cta-band { background: var(--forest); color: #fff; text-align: center; }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto 2rem; }

/* Page hero (inner pages) */
.page-hero { padding: 9rem 0 4rem; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); }

/* Detail page */
.detail-hero { position: relative; color: #fff; padding: 9rem 0 4rem; }
.detail-hero .detail-bg { position: absolute; inset: 0; z-index: -1; }
.detail-hero .detail-bg img { width: 100%; height: 100%; object-fit: cover; }
.detail-hero::before { content: ''; position: absolute; inset: 0; z-index: 0; background: rgba(20,18,15,0.55); }
.detail-hero .container { position: relative; z-index: 1; }
.detail-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); color: #fff; }
.detail-body { max-width: 760px; }
.detail-body p { color: var(--ink-soft); font-size: 1.02rem; }
.meta-row { display: flex; gap: 2.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.meta-row div { font-size: 0.85rem; }
.meta-row dt { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.3rem; }
.meta-row dd { margin: 0; font-weight: 500; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gallery .media-picture { width: 100%; aspect-ratio: 4/3; overflow: hidden; }
.gallery .media-picture img { width: 100%; height: 100%; object-fit: cover; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card .blog-img { aspect-ratio: 16/10; overflow: hidden; margin-bottom: 1.2rem; background: var(--cream); }
.blog-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover img { transform: scale(1.05); }
.blog-card .blog-meta { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.6rem; }
.blog-card h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
.blog-card p { font-size: 0.92rem; color: var(--ink-soft); }
.article-body { max-width: 720px; }
.article-body p { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.75; }
.article-body a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 0.18em; }
.article-body a:hover { color: var(--gold-deep); }
.tag-list { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 2rem; }
.tag-list a { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; border: 1px solid var(--line); padding: 0.4rem 0.9rem; color: var(--ink-soft); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); }
.contact-image { margin: 0 0 2rem; aspect-ratio: 4 / 3; overflow: hidden; }
.contact-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image { margin: 0 0 3rem; aspect-ratio: 16 / 7; overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-cards-section { border-top: 1px solid var(--line); }
.about-aesthetic-section { background: var(--paper); }
.section-intro { max-width: 360px; color: var(--ink-soft); margin: 0; }
.about-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.about-card {
  min-height: 230px; padding: 1.8rem; border: 1px solid var(--line);
  background: var(--paper); display: flex; flex-direction: column;
}
.about-card-number {
  color: var(--gold-deep); font-size: 0.72rem; letter-spacing: 0.16em;
  font-weight: var(--weight-ui); margin-bottom: 2.8rem;
}
.about-card h3 { font-size: 1.55rem; margin-bottom: 0.8rem; }
.about-card p { color: var(--ink-soft); font-size: 0.94rem; margin: 0; }
.about-card-dark { background: var(--forest); border-color: rgba(255,255,255,0.14); color: #fff; }
.about-card-dark p { color: rgba(255,255,255,0.72); }
.about-card-dark .about-card-number { color: var(--gold); }
.contact-info h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1.5rem; }
.contact-info p { color: var(--ink-soft); }
.contact-detail { margin-bottom: 1.4rem; }
.contact-detail .label { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.3rem; }
.contact-form { background: var(--paper); padding: 2.5rem; border: 1px solid var(--line); }
.form-row { margin-bottom: 1.3rem; }
.form-row label { display: block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.5rem; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--line); background: #fff;
  font-family: var(--sans); font-size: 0.95rem; color: var(--ink);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--gold); }
.form-row textarea { min-height: 130px; resize: vertical; }
.form-msg { padding: 0.9rem 1.1rem; font-size: 0.9rem; margin-bottom: 1.3rem; }
.form-msg.success { background: #e8f0e6; color: #2f5233; }
.form-msg.error { background: #f6e7e5; color: #8a3b34; }
.field-error { color: #8a3b34; font-size: 0.8rem; margin-top: 0.3rem; }

/* Footer */
.site-footer { background: var(--forest); color: rgba(255,255,255,0.7); padding: 4rem 0 2rem; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 0.8fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-logo { display: block; width: clamp(128px, 13vw, 168px); height: auto; aspect-ratio: 1; object-fit: contain; margin-bottom: 1rem; }
.footer-tagline { font-size: 0.92rem; max-width: 320px; margin-top: 1rem; }
.footer-nav h4, .footer-contact h4 { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; font-weight: var(--weight-ui); }
.footer-nav ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-nav a, .footer-contact a { font-size: 0.92rem; transition: color 0.2s; }
.footer-nav a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact p { font-size: 0.92rem; margin-bottom: 0.7rem; }
.footer-social h4 { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; font-weight: var(--weight-ui); }
.footer-social ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-social a { font-size: 0.92rem; transition: color 0.2s; }
.footer-social a:hover { color: #fff; }
.footer-base { padding-top: 1.8rem; font-size: 0.78rem; color: rgba(255,255,255,0.75); }

/* 404 */
.error-page { text-align: center; padding: 10rem 0; }
.error-page .code { font-family: var(--serif); font-size: 6rem; color: var(--gold); line-height: 1; }
.error-page h1 { font-size: 2rem; margin: 1rem 0; }
.error-copy { max-width: 34rem; margin: 1rem auto 2rem; color: var(--ink-soft); }
.error-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.9rem 1.2rem; }

/* Responsive */
@media (max-width: 900px) {
  .main-nav {
    position: fixed; inset: 0; background: var(--forest);
    display: flex; align-items: center; justify-content: center;
    transform: translateX(100%); transition: transform 0.35s ease; z-index: 40;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; text-align: center; gap: 1.6rem; }
  .main-nav a { font-size: 1.3rem; }
  .nav-toggle { display: block; z-index: 45; }
  .header-cta { display: none; }
  .intro-grid, .contact-grid { grid-template-columns: 1fr; }
  .review-submit-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.8rem, 9vw, 4.5rem); }
  .services-hero-grid { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: 1fr 1fr; }
  .home-services-grid { grid-template-columns: 1fr 1fr; }
  .service-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .room-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .feature-card.large { grid-row: auto; }
  .product-grid, .blog-grid, .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-card-grid { grid-template-columns: 1fr 1fr; }
  .service-card-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .site-logo { width: 66px; height: 66px; }
  .services-list, .room-grid, .product-grid, .blog-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .home-services-grid { grid-template-columns: 1fr; }
  .home-service-card { min-height: 0; }
  .gallery { grid-template-columns: 1fr; }
  .hero-meta { display: none; }
  .contact-form { padding: 1.5rem; }
  .about-card-grid { grid-template-columns: 1fr; }
  .about-card { min-height: 0; }
  .about-card-number { margin-bottom: 2rem; }
  .service-card-grid { grid-template-columns: 1fr; }
}
