/* ---------- Design tokens ---------- */
:root {
  --cream:      #FBF4E8;
  --cream-deep: #F3E6D0;
  --gold:       #C9A96A;
  --peach:      #E1AE81;
  --terracotta: #B4653A;
  --terracotta-dark: #98522D;
  --sage:       #86885F;
  --mauve:      #A5677A;
  --ink:        #3D2E22;
  --ink-soft:   #6E5C4C;
  --line:       #E7D9C3;
  --white:      #FFFFFF;

  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  --shadow-soft: 0 20px 40px -20px rgba(61, 46, 34, 0.25);
  --shadow-card: 0 12px 30px -16px rgba(61, 46, 34, 0.22);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0 0 0.5em;
  color: var(--ink);
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; color: var(--ink-soft); }
.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--ink);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  z-index: 999;
}
.skip-link:focus { left: 24px; top: 12px; }

section { padding: 96px 0; }
@media (max-width: 720px) {
  section { padding: 64px 0; }
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--terracotta-dark);
  margin: 0 0 14px;
}
.eyebrow.center { text-align: center; }
h2.center, .section-sub.center { text-align: center; }
.section-sub {
  max-width: 620px;
  font-size: 17px;
}
.section-sub.center { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: var(--shadow-card);
}
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--terracotta); color: var(--terracotta-dark); transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 244, 232, 0.88);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.brand-mark { width: 40px; height: 40px; border-radius: 50%; }
.brand-mark.small { width: 34px; height: 34px; }
.brand-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
}
.brand-text em { font-style: normal; color: var(--terracotta-dark); font-weight: 500; }

.site-nav {
  display: flex;
  gap: 28px;
}
.site-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
}
.site-nav a:hover { color: var(--terracotta-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
}

@media (max-width: 860px) {
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 18px;
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .site-nav a:last-child { border-bottom: none; }
}

/* ---------- Hero ---------- */
.hero { padding-top: 84px; padding-bottom: 84px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.05;
  margin-bottom: 22px;
}
.hero-sub { font-size: 18px; max-width: 480px; }
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-actions.center { justify-content: center; margin-left: auto; margin-right: auto; }

.hero-photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-soft);
  background: linear-gradient(160deg, var(--peach), var(--gold));
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-photo-frame { max-width: 380px; margin: 0 auto; }
}

/* ---------- Stats strip ---------- */
.stats {
  background: var(--terracotta);
  padding: 40px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--white);
  font-weight: 600;
}
.stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin-top: 6px;
  letter-spacing: 0.02em;
}
@media (max-width: 720px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- About ---------- */
.about-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.about-photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 3/4;
}
.about-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-copy p { font-size: 16.5px; }
@media (max-width: 860px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-photo-frame { max-width: 340px; margin: 0 auto; }
  .about-copy { text-align: center; }
}

/* ---------- Why outsource ---------- */
.why-outsource { background: var(--cream); }
.outsource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.outsource-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 34px;
}
.outsource-card h3 { font-size: 21px; margin-bottom: 20px; }
.outsource-card.featured {
  background: var(--terracotta);
  border-color: var(--terracotta);
  box-shadow: var(--shadow-card);
}
.outsource-card.featured h3 { color: var(--white); }
.outsource-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.outsource-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--ink-soft);
}
.outsource-card:not(.featured) .outsource-list li::before {
  content: '\2715';
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--mauve);
  font-size: 13px;
  font-weight: 700;
}
.outsource-card.featured .outsource-list li {
  color: rgba(255,255,255,0.92);
}
.outsource-card.featured .outsource-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}
.outsource-card.featured .price-badge {
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage);
}

@media (max-width: 780px) {
  .outsource-grid { grid-template-columns: 1fr; }
  .outsource-card { padding: 30px 26px; }
}

/* ---------- Services ---------- */
.services { background: var(--cream-deep); }
.service-block {
  margin-top: 56px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-card);
}
.service-block-head { max-width: 680px; margin-bottom: 32px; }
.service-block-head h3 { font-size: 26px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-card {
  position: relative;
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
}
.price-card.featured {
  background: var(--terracotta);
  border-color: var(--terracotta);
}
.price-card.featured h4,
.price-card.featured .price,
.price-card.featured .price-desc { color: var(--white); }
.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}
.price-card h4 { font-size: 18px; margin-bottom: 10px; }
.price {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  color: var(--terracotta-dark);
  margin: 0 0 8px;
}
.price span { font-size: 15px; font-weight: 500; font-family: var(--font-body); color: var(--ink-soft); }
.price-card.featured .price span { color: rgba(255,255,255,0.85); }
.price-desc { font-size: 14px; margin: 0; }

.delivery-note {
  margin-top: 28px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  border-left: 4px solid var(--gold);
}
.delivery-note p { margin: 0; font-size: 14.5px; color: var(--ink-soft); }

@media (max-width: 780px) {
  .service-block { padding: 28px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { order: -1; }
}

/* ---------- Landscape banner ---------- */
.landscape-banner {
  height: 340px;
  background-size: cover;
  background-position: center 65%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 24px 40px;
}
.landscape-banner p {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(18px, 2.6vw, 26px);
  font-weight: 500;
  font-style: italic;
  text-align: center;
  max-width: 640px;
  margin: 0;
  text-shadow: 0 2px 14px rgba(0,0,0,0.25);
}
@media (max-width: 600px) {
  .landscape-banner { height: 260px; padding-bottom: 28px; }
}

/* ---------- Reviews ---------- */
.reviews-placeholder {
  max-width: 560px;
  margin: 40px auto 0;
  text-align: center;
  background: var(--white);
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
}
.stars {
  font-size: 26px;
  letter-spacing: 4px;
  color: var(--gold);
  opacity: 0.55;
  margin-bottom: 14px;
}
.reviews-placeholder p { margin: 0; font-size: 15.5px; }

/* ---------- Contact ---------- */
.contact { background: linear-gradient(180deg, var(--cream-deep), var(--cream)); }
.contact-inner { text-align: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 48px 0 32px;
}
.footer-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.site-footer .brand-text { color: var(--white); }
.site-footer .brand-text em { color: var(--peach); }
.footer-meta { font-size: 14px; margin: 0; color: rgba(255,255,255,0.65); }
.footer-meta a { color: var(--peach); }
.footer-copy { font-size: 12.5px; margin: 0; color: rgba(255,255,255,0.45); }
