/* ============================================================
   Decorating Solutions — Warm Editorial redesign
   System: Newsreader (serif display) + Lato (body/UI)
   Palette: cream paper · warm ink/brown · terracotta · sage
   ============================================================ */

:root {
  /* ---- Colour ---- */
  --cream:        #F5F1EA;   /* page paper */
  --cream-2:      #EFE8DC;   /* alt sections / insets */
  --cream-3:      #E7DECF;   /* hairlines on cream */
  --paper:        #FCFAF6;   /* cards / raised surfaces */

  --ink:          #36291F;   /* headings */
  --brown:        #4A3B2F;   /* dark wood */
  --brown-deep:   #2B2017;   /* dark sections */
  --body:         #5B4D40;   /* body copy on cream */
  --muted:        #877565;   /* captions / meta */

  --terra:        #B5654A;   /* accent */
  --terra-deep:   #9E4F38;   /* button / text-safe */
  --terra-soft:   #E9D2C6;   /* tint */

  --sage:         #7D9D7F;   /* accent 2 */
  --sage-deep:    #4E6B50;   /* sage text-safe */
  --sage-soft:    #DEE5DA;   /* tint */

  /* ---- Type ---- */
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans:  "Lato", "Helvetica Neue", Arial, sans-serif;

  /* ---- Spacing rhythm (8px base) ---- */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px;
  --section-y: clamp(29px, 3.6vw, 51px);
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --radius: 14px;
  --radius-sm: 9px;

  /* ---- Elevation (soft, warm) ---- */
  --sh-1: 0 1px 2px rgba(54,41,31,.05), 0 2px 8px rgba(54,41,31,.05);
  --sh-2: 0 6px 18px rgba(54,41,31,.08), 0 2px 6px rgba(54,41,31,.05);
  --sh-3: 0 18px 44px rgba(54,41,31,.14), 0 6px 14px rgba(54,41,31,.07);
  --ring: 0 0 0 3px rgba(125,157,127,.30);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }

/* ---- Inline SVG icons ---- */
.icon {
  width: 1.15em; height: 1.15em;
  display: inline-block;
  vertical-align: -0.18em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--body);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

p { text-wrap: pretty; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
::selection { background: var(--terra-soft); color: var(--ink); }

/* ---- Layout helpers ---- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); }
.section--alt { background: var(--cream-2); }
.section--paper { background: var(--paper); }

/* ---- Eyebrow + accent rule (shared section header) ---- */
.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terra-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--terra);
  border-radius: 2px;
}

.section-head { max-width: 720px; margin-bottom: var(--s-8); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 {
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  margin-top: var(--s-4);
}
.section-head .lead {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: var(--body);
  margin-top: var(--s-4);
  line-height: 1.6;
}
.section-head.center .lead { margin-inline: auto; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  --btn-bg: var(--terra-deep);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  line-height: 1;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  box-shadow: var(--sh-1);
}
.btn .fa-solid, .btn .fas, .btn i, .btn .icon { font-size: .9em; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-2); background: var(--terra); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: none; box-shadow: var(--ring); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--cream-3);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--paper); border-color: var(--terra); color: var(--terra-deep); transform: translateY(-2px); }

/* on dark / image backgrounds */
.btn--on-dark { background: var(--terra); }
.btn--on-dark:hover { background: var(--terra-deep); }
.btn--ghost-light {
  background: rgba(255,255,255,.06);
  color: #fff;
  border-color: rgba(255,255,255,.55);
  backdrop-filter: blur(2px);
  box-shadow: none;
}
.btn--ghost-light:hover { background: rgba(255,255,255,.16); border-color: #fff; color:#fff; transform: translateY(-2px); }
.btn--light { background: var(--cream); color: var(--ink); }
.btn--light:hover { background: #fff; color: var(--terra-deep); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(245,241,234,.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
}
.site-header.sticky {
  background: rgba(245,241,234,.94);
  border-bottom-color: var(--cream-3);
  box-shadow: var(--sh-1);
}
.site-header.sticky .container { padding-block: 12px; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: var(--terra-deep);
  color: #fff;
  font-size: 16px;
  box-shadow: var(--sh-1);
  flex-shrink: 0;
}
.brand-mark .icon { width: 21px; height: 21px; }
.brand-name {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 4.2vw, 1.5rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand-name span { color: var(--terra-deep); }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a.nav-link {
  font-weight: 700;
  font-size: .95rem;
  color: var(--brown);
  padding: 9px 14px;
  border-radius: 999px;
  position: relative;
  transition: color .2s ease, background .2s ease;
}
.main-nav a.nav-link:hover { color: var(--terra-deep); background: rgba(181,101,74,.08); }
.main-nav a.nav-link.active { color: var(--terra-deep); }

.lang {
  margin-left: 6px;
  display: inline-flex;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--cream-3);
  border-radius: 999px;
  padding: 3px;
}
#language-selector {
  appearance: none;
  border: 0;
  background: transparent;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .85rem;
  color: var(--brown);
  padding: 6px 26px 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239E4F38' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 11px center;
}
#language-selector:focus-visible { outline: none; box-shadow: var(--ring); }

.nav-cta { margin-left: 8px; }
.nav-cta .btn { padding: 11px 20px; font-size: .9rem; }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--cream-3);
  border-radius: 11px;
  background: var(--paper);
  cursor: pointer;
  position: relative;
}
.hamburger span {
  position: absolute;
  left: 11px; right: 11px;
  height: 2px; border-radius: 2px;
  background: var(--brown);
  transition: transform .3s ease, opacity .2s ease;
}
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 27px; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(620px, 92vh, 900px);
  display: flex;
  align-items: center;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background: center/cover no-repeat;
  transform: scale(1.04);
}
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(40,30,21,.92) 0%, rgba(40,30,21,.8) 40%, rgba(40,30,21,.44) 70%, rgba(40,30,21,.12) 100%),
    linear-gradient(to top, rgba(40,30,21,.5) 0%, rgba(40,30,21,0) 34%);
}
.hero .container { padding-top: 90px; }
.hero-inner { max-width: 760px; }
.hero .eyebrow { color: #f0d9cf; }
.hero .eyebrow::before { background: var(--terra); }
.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5.4vw, 4.1rem);
  font-weight: 500;
  line-height: 1.06;
  margin: var(--s-5) 0 var(--s-5);
  text-shadow: 0 2px 30px rgba(0,0,0,.28);
  max-width: 16ch;
}
.hero p.hero-sub {
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
  color: rgba(255,255,255,.92);
  line-height: 1.6;
  max-width: 56ch;
  margin-bottom: var(--s-7);
  text-shadow: 0 1px 12px rgba(0,0,0,.3);
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: var(--s-4); }

.hero-scroll {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,.7);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll i { animation: bob 2.2s ease-in-out infinite; }
.hero-scroll .icon { width: 18px; height: 18px; animation: bob 2.2s ease-in-out infinite; }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(5px)} }

/* ============================================================
   Services — crafted 2×2
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 1.8vw, 24px);
}
.service-card {
  position: relative;
  display: block;
  background: var(--paper);
  border: 1px solid var(--cream-3);
  border-radius: var(--radius);
  padding: clamp(28px, 3vw, 40px);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--sage), var(--terra));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-3);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleY(1); }

.service-num {
  position: absolute;
  top: clamp(22px,2.6vw,32px); right: clamp(24px,2.8vw,36px);
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--muted);
  opacity: .55;
}
.service-icon {
  width: 60px; height: 60px;
  border-radius: 15px;
  display: grid; place-items: center;
  background: var(--sage-soft);
  color: var(--sage-deep);
  font-size: 24px;
  margin-bottom: var(--s-5);
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.service-icon .icon { width: 28px; height: 28px; stroke-width: 1.8; }
.service-card:hover .service-icon {
  background: var(--terra-deep);
  color: #fff;
  transform: rotate(-4deg);
}
.service-card h3 { font-size: 1.5rem; margin-bottom: var(--s-3); }
.service-card p { color: var(--body); font-size: 1rem; margin: 0; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  position: relative;
  color: #fff;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(32px, 4vw, 53px);
}
.cta-bg { position: absolute; inset: 0; z-index: -2; background: center/cover no-repeat; transform: scale(1.04); }
.cta-band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(rgba(43,32,23,.86), rgba(43,32,23,.78));
}
.cta-band .eyebrow { color: #f0d9cf; justify-content: center; }
.cta-band .eyebrow::before { background: var(--terra); }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin: var(--s-4) 0 var(--s-4); }
.cta-band p { color: rgba(255,255,255,.9); font-size: 1.18rem; max-width: 52ch; margin: 0 auto var(--s-7); }

/* ============================================================
   Our Work — editorial featured grid
   ============================================================ */
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(170px, 19vw, 240px);
  gap: clamp(12px, 1.4vw, 18px);
}
.work-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--sh-2);
  isolation: isolate;
}
.work-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.work-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,21,15,.72) 0%, rgba(28,21,15,.18) 38%, rgba(28,21,15,0) 62%);
  transition: opacity .4s ease;
}
.work-item:hover img { transform: scale(1.06); }
.work-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: clamp(16px, 1.8vw, 26px);
  color: #fff;
}
.work-caption h3 {
  color: #fff;
  font-size: clamp(1.1rem, 1.5vw, 1.45rem);
  margin: 0 0 3px;
  text-shadow: 0 1px 10px rgba(0,0,0,.35);
}
.work-caption p {
  margin: 0;
  font-size: .92rem;
  color: rgba(255,255,255,.86);
  font-style: italic;
}
.work-item--feature { grid-column: span 6; grid-row: span 2; }
.work-item--wide    { grid-column: span 6; grid-row: span 1; }
.work-item--half    { grid-column: span 3; grid-row: span 1; }
.work-item--feature .work-caption h3 { font-size: clamp(1.4rem, 2vw, 1.9rem); }
.work-item--half .work-caption h3 { font-size: 1.05rem; line-height: 1.2; }
.work-item--half .work-caption p { font-size: .82rem; }

.work-more { text-align: center; margin-top: var(--s-8); }

/* ============================================================
   Testimonials — editorial carousel
   ============================================================ */
.testimonials { background: var(--brown-deep); color: #fff; position: relative; overflow: hidden; }
.testimonials .eyebrow { color: #f0d9cf; }
.testimonials .eyebrow::before { background: var(--terra); }
.testimonials .section-head h2 { color: #fff; }

.tcarousel {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.tquote-mark {
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: .7;
  color: var(--terra);
  height: .55em;
  display: block;
  margin-bottom: var(--s-3);
}
.tviewport { position: relative; }
.tslide { display: none; }
.tslide.active { display: block; }
html.js .tslide.active { animation: tfade .55s ease; }
@keyframes tfade { from { opacity: .35; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.tquote-lead {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.7vw, 2.15rem);
  line-height: 1.32;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: var(--s-5);
}
.tquote-body { max-width: 60ch; }
.tquote-body p {
  color: rgba(255,255,255,.78);
  font-size: 1.02rem;
  line-height: 1.72;
  margin-bottom: var(--s-4);
}
.tquote-body p:last-child { margin-bottom: 0; }
.tauthor {
  margin-top: var(--s-6);
  display: flex;
  align-items: center;
  gap: 14px;
}
.tauthor .rule { width: 34px; height: 2px; background: var(--terra); border-radius: 2px; }
.tauthor h4 { color: #fff; font-size: 1.15rem; margin: 0; }

/* right column: portrait stack + controls */
.tside {
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 40px);
}
.tside-stars { color: var(--terra); letter-spacing: 3px; font-size: 1.05rem; margin-bottom: var(--s-4); }
.tside-label {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: var(--s-6);
}
.tside-meta { color: rgba(255,255,255,.6); font-size: .9rem; margin-bottom: var(--s-6); }

.tcontrols { display: flex; align-items: center; gap: var(--s-4); }
.tbtn {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.28);
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: grid; place-items: center;
  font-size: 1rem;
  transition: background .2s ease, border-color .2s ease, transform .2s ease, color .2s ease;
}
.tbtn:hover { background: var(--terra); border-color: var(--terra); transform: translateY(-2px); }
.tbtn .icon { width: 19px; height: 19px; }
.tbtn:focus-visible { outline: none; box-shadow: var(--ring); }
.tdots { display: flex; gap: 9px; margin-left: auto; }
.tdot {
  width: 9px; height: 9px; border-radius: 50%;
  border: 0; padding: 0;
  background: rgba(255,255,255,.28);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, width .25s ease, border-radius .25s ease;
}
.tdot.active { background: var(--terra); width: 26px; border-radius: 5px; }
.tcount { font-family: var(--serif); font-size: .95rem; color: rgba(255,255,255,.55); }

/* ============================================================
   About
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.about-text .eyebrow { margin-bottom: var(--s-4); }
.about-text h2 { font-size: clamp(2rem, 3.4vw, 2.7rem); margin-bottom: var(--s-5); }
.about-text .lead {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: var(--s-5);
}
.about-text p { color: var(--body); margin-bottom: var(--s-4); }
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-6);
}
.about-feature {
  display: flex; align-items: center; gap: 12px;
  font-weight: 700; color: var(--ink); font-size: .98rem;
}
.about-feature i {
  width: 34px; height: 34px; border-radius: 9px;
  display: grid; place-items: center;
  background: var(--sage-soft); color: var(--sage-deep);
  font-size: 14px; flex-shrink: 0;
}
.about-feature .icon {
  width: 34px; height: 34px; border-radius: 9px;
  padding: 8px;
  background: var(--sage-soft); color: var(--sage-deep);
  flex-shrink: 0; stroke-width: 2.4;
}
.about-media { position: relative; }
.about-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--sh-3);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.about-media .badge {
  position: absolute;
  left: -22px; bottom: 28px;
  background: var(--terra-deep);
  color: #fff;
  border-radius: 13px;
  padding: 16px 22px;
  box-shadow: var(--sh-3);
  display: flex; align-items: baseline; gap: 9px;
}
.about-media .badge b { font-family: var(--serif); font-size: 2rem; font-weight: 600; line-height: 1; }
.about-media .badge span { font-size: .82rem; line-height: 1.2; max-width: 9ch; opacity: .92; }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr .85fr;
  gap: clamp(24px, 3.5vw, 56px);
  align-items: stretch;
}
.contact-card {
  background: var(--paper);
  border: 1px solid var(--cream-3);
  border-radius: var(--radius);
  padding: clamp(26px, 3.2vw, 44px);
  box-shadow: var(--sh-1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.form-group { margin-bottom: var(--s-5); }
.form-group:last-of-type { margin-bottom: var(--s-6); }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--cream-3);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239E4F38' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 40px;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover { border-color: #d8cab5; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--sage);
  box-shadow: var(--ring);
}
.contact-card .btn { width: 100%; }

.form-success-message {
  border: 1px solid var(--sage);
  background: var(--sage-soft);
  color: var(--sage-deep);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  margin-bottom: var(--s-5);
}
.form-success-message h3 { color: var(--sage-deep); font-size: 1.2rem; margin-bottom: 6px; }
.form-success-message p { margin: 0; font-size: .95rem; }

/* contact info column */
.contact-info {
  background: var(--brown-deep);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(26px, 3.2vw, 44px);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  position: relative;
  overflow: hidden;
}
.contact-info > .ci-head { margin-bottom: var(--s-4); }
.contact-info .ci-head h3 { color: #fff; font-size: 1.5rem; margin-bottom: 8px; }
.contact-info .ci-head p { color: rgba(255,255,255,.72); font-size: .98rem; margin: 0; }
.info-item {
  display: flex;
  gap: 16px;
  padding: var(--s-4) 0;
  border-top: 1px solid rgba(255,255,255,.12);
}
.info-item i {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,.07);
  color: var(--terra);
  display: grid; place-items: center;
  font-size: 17px; flex-shrink: 0;
}
.info-item .icon {
  width: 44px; height: 44px; border-radius: 12px;
  padding: 12px;
  background: rgba(255,255,255,.07);
  color: var(--terra);
  flex-shrink: 0;
}
.info-item h4 { color: #fff; font-size: 1.02rem; margin-bottom: 3px; }
.info-item p { margin: 0; color: rgba(255,255,255,.78); font-size: .97rem; line-height: 1.5; }
.contact-info .ci-foot {
  margin-top: auto;
  padding-top: var(--s-5);
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
}
.contact-info .ci-foot .rule { flex: 1; height: 1px; background: rgba(255,255,255,.14); }
.ci-foot .icon { width: 22px; height: 22px; color: var(--terra); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--brown-deep);
  color: rgba(255,255,255,.7);
  padding-block: var(--s-9) var(--s-6);
  border-top: 3px solid var(--terra);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  padding-bottom: var(--s-8);
}
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-mark { background: var(--terra); }
.footer-tag { margin-top: var(--s-4); max-width: 34ch; color: rgba(255,255,255,.62); }
.footer-col h3 {
  color: #fff;
  font-family: var(--sans);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: rgba(255,255,255,.7); font-size: .98rem; }
.footer-col a:hover { color: var(--terra); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: var(--s-5);
  font-size: .88rem;
  color: rgba(255,255,255,.5);
}

/* ============================================================
   Reveal on scroll (robust: only hides when JS is active)
   ============================================================ */
.reveal { }
html.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .hero-scroll i { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .tcarousel { grid-template-columns: 1fr; gap: var(--s-6); }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 480px; margin-inline: auto; }
  .about-media img { aspect-ratio: 3 / 2; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .site-header .container { position: relative; padding-block: 14px; }
  /* Mobile nav = opaque dropdown panel anchored under the hamburger */
  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(86vw, 320px);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--paper);
    border: 1px solid var(--cream-3);
    border-radius: 16px;
    box-shadow: var(--sh-3);
    padding: 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(.98);
    transform-origin: top right;
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a.nav-link { font-size: 1rem; padding: 12px 14px; border-radius: 10px; }
  .main-nav a.nav-link:hover,
  .main-nav a.nav-link.active { background: rgba(181,101,74,.10); }
  .lang { margin: 6px 0 0; align-self: stretch; justify-content: space-between; }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta .btn { width: 100%; }
  .hamburger { display: block; z-index: 1001; }
}
@media (max-width: 760px) {
  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: clamp(150px,38vw,200px); }
  .work-item--feature { grid-column: span 2; grid-row: span 2; }
  .work-item--wide { grid-column: span 2; }
  .work-item--half { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .about-features { grid-template-columns: 1fr; }
  .about-media .badge { left: 0; }
}
@media (max-width: 460px) {
  .work-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .work-item--feature, .work-item--wide, .work-item--half { grid-column: span 1; grid-row: span 1; }
  .work-item--feature { grid-row: span 1; }
}

/* ============================================================
   Responsive overflow guards — keep every device free of x-scroll
   ============================================================ */
.brand { min-width: 0; }
h1, h2, h3, .hero h1, .tquote-lead { overflow-wrap: break-word; }
@media (max-width: 480px) {
  .site-header .container { gap: 12px; }
  .brand-mark { width: 34px; height: 34px; border-radius: 10px; }
  .brand-mark .icon { width: 19px; height: 19px; }
  .main-nav { width: min(92vw, 300px); }
}
@media (max-width: 360px) {
  .brand-name { font-size: 1.12rem; }
}

/* ============================================================
   Our Work — auto-looping cross-fade slideshow (home + gallery)
   ============================================================ */
.gslider {
  position: relative;
  height: clamp(320px, 56vh, 600px);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sh-2);
  background: var(--cream-2);
  margin-bottom: var(--s-8);
}
.gslide { position: absolute; inset: 0; opacity: 0; animation: gfade 36s linear infinite; }
.gslide img { width: 100%; height: 100%; object-fit: cover; }
.gslide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,21,15,.66) 0%, rgba(28,21,15,.12) 36%, rgba(28,21,15,0) 62%);
}
.gslide-cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: clamp(18px, 3vw, 36px); color: #fff; }
.gslide-cap h3 { color: #fff; margin: 0 0 4px; font-size: clamp(1.3rem, 2.6vw, 2.1rem); text-shadow: 0 1px 12px rgba(0,0,0,.4); }
.gslide-cap p { margin: 0; font-style: italic; color: rgba(255,255,255,.9); font-size: clamp(.92rem, 1.4vw, 1.08rem); }
.gslide:nth-child(1) { animation-delay: 0s; }
.gslide:nth-child(2) { animation-delay: 4s; }
.gslide:nth-child(3) { animation-delay: 8s; }
.gslide:nth-child(4) { animation-delay: 12s; }
.gslide:nth-child(5) { animation-delay: 16s; }
.gslide:nth-child(6) { animation-delay: 20s; }
.gslide:nth-child(7) { animation-delay: 24s; }
.gslide:nth-child(8) { animation-delay: 28s; }
.gslide:nth-child(9) { animation-delay: 32s; }
@keyframes gfade { 0% { opacity: 0; } 1.5% { opacity: 1; } 11% { opacity: 1; } 13% { opacity: 0; } 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .gslide { animation: none; } .gslide:first-child { opacity: 1; } }

/* ============================================================
   FAQ (accordion)
   ============================================================ */
.faq-list { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--cream-3); }
.faq-item summary {
  cursor: pointer; list-style: none;
  font-family: var(--serif); font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--ink); padding: var(--s-5) 42px var(--s-5) 0; position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%;
  transform: translateY(-50%); font-size: 1.6rem; line-height: 1;
  color: var(--terra-deep); transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item summary:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }
.faq-item p { color: var(--body); padding: 0 42px var(--s-5) 0; margin: 0; line-height: 1.7; }

/* footer legal link */
.footer-bottom a { color: rgba(255,255,255,.7); font-size: .85rem; }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   Sub-pages (service pages, legal)
   ============================================================ */
.subpage { padding-top: clamp(104px, 13vh, 140px); }
.subpage .prose { max-width: 760px; }
.subpage .prose > p { margin-bottom: var(--s-4); line-height: 1.7; }
.subpage h2 { font-size: clamp(1.3rem, 2vw, 1.7rem); margin: var(--s-6) 0 var(--s-3); }
.svc-list { margin: var(--s-3) 0 var(--s-6); padding-left: 1.2em; }
.svc-list li { list-style: disc; color: var(--body); margin-bottom: 8px; line-height: 1.6; }
.svc-other { margin-top: var(--s-7); padding-top: var(--s-6); border-top: 1px solid var(--cream-3); }
.svc-other h2 { margin-top: 0; }
.svc-other-links { display: flex; flex-wrap: wrap; gap: 12px; }
.svc-other-links a {
  font-weight: 700; font-size: .92rem; color: var(--brown);
  border: 1px solid var(--cream-3); border-radius: 999px; padding: 9px 18px;
  background: var(--paper); transition: color .2s ease, border-color .2s ease;
}
.svc-other-links a:hover { color: var(--terra-deep); border-color: var(--terra); }
.svc-cta { background: var(--brown-deep); color: #fff; border-radius: var(--radius); padding: clamp(28px, 4vw, 48px); margin-top: var(--s-7); text-align: center; }
.svc-cta h2 { color: #fff; margin: 0 0 var(--s-3); }
.svc-cta p { color: rgba(255,255,255,.85); margin: 0 auto var(--s-5); max-width: 52ch; }

.section-head h1 { font-size: clamp(2rem, 3.6vw, 2.85rem); margin-top: var(--s-4); }
