:root {
  --cream: #fbf5ee;
  --paper: #fffdf9;
  --rose: #b87368;
  --rose-dark: #8f574f;
  --ink: #3a2722;
  --muted: #75635d;
  --sage: #596b61;
  --sage-dark: #43544b;
  --line: rgba(95, 69, 61, .16);
  --shadow: 0 18px 45px rgba(83, 57, 49, .12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
img { display:block; max-width:100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.container { width: min(1180px, calc(100% - 40px)); margin-inline:auto; }
.kicker { text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; color: var(--rose-dark); font-weight: 750; }
.script { font-family: "Segoe Print", "Bradley Hand", "Comic Sans MS", cursive; font-weight: 400; letter-spacing: -.03em; }

.site-header {
  position: sticky; top:0; z-index:20;
  background: rgba(255,253,249,.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header-inner { min-height: 82px; display:flex; align-items:center; gap:28px; }
.brand { display:flex; align-items:center; gap:12px; text-decoration:none; margin-right:auto; }
.brand-mark { width:48px; height:48px; display:grid; place-items:center; border:1px solid var(--rose); border-radius:50%; color:var(--rose-dark); font-size:1.45rem; }
.brand-copy strong { display:block; font-size:1.35rem; font-family:"Segoe Print", cursive; font-weight:500; }
.brand-copy span { display:block; color:var(--muted); font-size:.76rem; letter-spacing:.08em; }
.nav { display:flex; gap:22px; align-items:center; }
.nav a { text-decoration:none; font-size:.95rem; font-weight:650; }
.nav a:hover { color:var(--rose-dark); }
.menu-toggle { display:none; border:0; background:transparent; font-size:1.6rem; color:var(--ink); }

.hero { position:relative; min-height: 620px; overflow:hidden; background:#695148; }
.hero-media { position:absolute; inset:0; }
.hero-media img { width:100%; height:100%; object-fit:cover; }
.hero-media::after { content:""; position:absolute; inset:0; background:linear-gradient(90deg, rgba(45,30,26,.78), rgba(45,30,26,.34) 55%, rgba(45,30,26,.08)); }
.hero-inner { min-height:620px; display:flex; align-items:center; position:relative; z-index:1; }
.hero-copy { max-width: 620px; color:white; padding:60px 0; }
.hero-copy .kicker { color:#f3ccc4; }
.hero h1 { font-size:clamp(3rem, 6vw, 5.8rem); line-height:.98; margin:.18em 0 .35em; max-width: 760px; }
.hero p { font-size:clamp(1.05rem, 2vw, 1.25rem); max-width:510px; color:rgba(255,255,255,.9); }
.actions { display:flex; gap:12px; flex-wrap:wrap; margin-top:28px; }
.button { display:inline-flex; align-items:center; justify-content:center; min-height:48px; padding:0 22px; border-radius:999px; text-decoration:none; font-weight:750; border:1px solid transparent; }
.button.primary { background:var(--rose); color:white; }
.button.primary:hover { background:var(--rose-dark); }
.button.ghost { border-color:rgba(255,255,255,.7); color:white; background:rgba(255,255,255,.08); }

.section { padding:88px 0; }
.section.paper { background:var(--paper); }
.section-head { max-width:760px; margin-bottom:36px; }
.section-head h2, .split-copy h2, .contact-panel h2 { font-size:clamp(2.25rem,4.4vw,4.2rem); line-height:1.05; margin:.18em 0 .3em; }
.section-head p, .split-copy p, .contact-panel p { color:var(--muted); font-size:1.05rem; }

.service-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.card { background:white; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); display:flex; flex-direction:column; }
.card-media { aspect-ratio: 4/2.5; overflow:hidden; background:#eadfd8; }
.card-media img { width:100%; height:100%; object-fit:cover; transition:transform .35s ease; }
.card:hover .card-media img { transform:scale(1.035); }
.card-body { padding:22px; display:flex; flex-direction:column; flex:1; }
.card-icon { width:46px; height:46px; margin-top:-44px; margin-bottom:10px; border-radius:50%; background:var(--rose); color:white; display:grid; place-items:center; border:4px solid white; font-size:1.25rem; }
.card h3 { margin:.2rem 0 .5rem; font-size:1.25rem; line-height:1.2; }
.card p { color:var(--muted); font-size:.94rem; flex:1; }
.text-link { color:var(--rose-dark); text-decoration:none; font-weight:750; margin-top:12px; }

.gallery-grid { display:grid; grid-template-columns:repeat(6,1fr); gap:12px; }
.gallery-item { position:relative; overflow:hidden; border-radius:18px; aspect-ratio:1/1; background:#eadfd8; }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition: transform .35s ease; }
.gallery-item:hover img { transform:scale(1.05); }
.gallery-caption { position:absolute; inset:auto 0 0 0; padding:28px 12px 10px; color:white; font-size:.8rem; font-weight:750; background:linear-gradient(transparent,rgba(32,22,19,.72)); }

.split { display:grid; grid-template-columns:1fr 1fr; gap:54px; align-items:center; }
.split.reverse .split-media { order:2; }
.split-media { border-radius:32px; overflow:hidden; box-shadow:var(--shadow); background:#e7ddd5; }
.split-media img { width:100%; height:100%; min-height:430px; object-fit:cover; }
.feature-list { display:grid; gap:14px; margin:26px 0; padding:0; list-style:none; }
.feature-list li { display:flex; gap:12px; align-items:flex-start; }
.feature-list li::before { content:"♡"; color:var(--rose-dark); font-weight:800; }

.about { background:linear-gradient(135deg,#fffaf4,#f6ece5); }
.about .split-media { max-height:520px; }
.about .split-media img { object-position:center 25%; }
.placeholder-badge { display:inline-block; margin-top:12px; padding:7px 11px; border-radius:999px; background:#fff2d9; color:#6d5528; font-size:.78rem; font-weight:700; }

.contact-wrap { display:grid; grid-template-columns:1.3fr .9fr; gap:24px; }
.contact-panel, .details-panel { background:white; border:1px solid var(--line); border-radius:30px; padding:36px; box-shadow:var(--shadow); }
.details-panel { background:var(--sage); color:white; }
.details-panel a { color:white; }
.detail { padding:16px 0; border-bottom:1px solid rgba(255,255,255,.18); }
.detail:last-child { border-bottom:0; }
.detail small { display:block; text-transform:uppercase; letter-spacing:.12em; opacity:.7; margin-bottom:4px; }
.notice { margin-top:20px; padding:14px 16px; border-radius:14px; background:#fff7e7; color:#6e5530; font-size:.88rem; }

.site-footer { background:var(--sage-dark); color:white; padding:34px 0; }
.footer-inner { display:flex; gap:24px; justify-content:space-between; align-items:center; flex-wrap:wrap; }
.footer-links { display:flex; gap:18px; flex-wrap:wrap; }
.footer-links a { color:white; opacity:.86; }

@media (max-width: 980px) {
  .nav { display:none; position:absolute; top:82px; left:20px; right:20px; padding:18px; border-radius:18px; background:var(--paper); box-shadow:var(--shadow); flex-direction:column; align-items:stretch; }
  .nav.open { display:flex; }
  .menu-toggle { display:block; }
  .service-grid { grid-template-columns:repeat(2,1fr); }
  .gallery-grid { grid-template-columns:repeat(3,1fr); }
  .split { grid-template-columns:1fr; gap:30px; }
  .split.reverse .split-media { order:0; }
  .contact-wrap { grid-template-columns:1fr; }
}

@media (max-width: 620px) {
  .container { width:min(100% - 28px,1180px); }
  .header-inner { min-height:72px; }
  .brand-copy span { display:none; }
  .nav { top:72px; }
  .hero, .hero-inner { min-height:540px; }
  .hero-copy { padding:42px 0; }
  .hero h1 { font-size:3.15rem; }
  .section { padding:64px 0; }
  .service-grid { grid-template-columns:1fr; }
  .gallery-grid { grid-template-columns:repeat(2,1fr); }
  .card-media { aspect-ratio:16/9; }
  .split-media img { min-height:320px; }
  .contact-panel, .details-panel { padding:26px; }
}
