:root {
  --ink: #183b2a;
  --ink-soft: #31513f;
  --cream: #f7f2e8;
  --paper: #fffdf8;
  --sand: #d9bb8f;
  --gold: #a77b3e;
  --line: rgba(24, 59, 42, .14);
  --shadow: 0 24px 70px rgba(28, 45, 32, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 5%, rgba(217, 187, 143, .25), transparent 30rem),
    var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 14px max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(247, 242, 232, .9);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: .2em; }
.brand-mark {
  display: grid;
  width: 48px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 14px;
  color: var(--sand);
  background: #151715;
  letter-spacing: 0;
  font-family: Georgia, serif;
  font-size: 24px;
}
.main-nav { display: flex; align-items: center; gap: 24px; font-weight: 750; }
.main-nav a { padding-block: 10px; }
.main-nav a:not(.nav-cta):hover { color: var(--gold); }
.nav-cta { padding: 13px 20px !important; border-radius: 999px; color: white; background: var(--ink); }
.menu-button { display: none; border: 0; background: transparent; }

.hero {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  min-height: 720px;
  padding-block: 64px;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .19em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
h1 { max-width: 780px; margin-bottom: 24px; font-size: clamp(52px, 7vw, 100px); line-height: .94; letter-spacing: -.055em; }
h2 { font-size: clamp(34px, 5vw, 62px); line-height: 1.02; letter-spacing: -.035em; }
.hero-line { margin-bottom: 16px; color: var(--gold); font-size: clamp(24px, 3vw, 38px); font-weight: 800; }
.lead, .page-hero > p:last-child { max-width: 690px; color: var(--ink-soft); font-size: clamp(18px, 2vw, 22px); line-height: 1.65; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 52px; padding: 13px 22px; border: 1px solid transparent; border-radius: 999px; font-weight: 850; cursor: pointer; }
.button-primary { color: white; background: var(--ink); }
.button-secondary { border-color: var(--ink); background: transparent; }
.button-light { color: var(--ink); background: var(--paper); }
.button-outline-light { border-color: rgba(255,255,255,.55); color: white; }
.hero-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 36px;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}
.hero-visual img { min-height: 520px; object-fit: cover; }
.hero-visual figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 16px 18px;
  border-radius: 18px;
  color: white;
  background: rgba(24, 59, 42, .9);
  font-weight: 800;
}

.statement { padding: 72px max(20px, calc((100vw - 950px) / 2)); text-align: center; background: var(--ink); }
.statement p { color: var(--sand); font-weight: 850; text-transform: uppercase; letter-spacing: .12em; }
.statement h2 { margin: 0; color: white; }
.section { padding-block: 100px; }
.section-heading { display: flex; justify-content: space-between; gap: 32px; align-items: end; margin-bottom: 42px; }
.section-heading h2 { max-width: 760px; margin: 0; }
.text-link { padding-bottom: 5px; border-bottom: 1px solid currentColor; font-weight: 850; white-space: nowrap; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-grid-wide { grid-template-columns: repeat(3, 1fr); }
.service-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 248, .78);
}
.service-card > span { color: var(--gold); font-weight: 900; }
.service-card h2, .service-card h3 { margin: 54px 0 12px; font-family: Georgia, serif; font-size: 28px; line-height: 1.05; }
.service-card p { margin: 0; color: var(--ink-soft); line-height: 1.6; }
.section-dark { color: white; background: #121b16; }
.section-dark .eyebrow { color: var(--sand); }
.text-link-light { color: white; }
.portfolio-preview { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.portfolio-card { position: relative; min-height: 520px; overflow: hidden; border-radius: 26px; background: #222; }
.portfolio-card img { height: 100%; object-fit: cover; transition: transform .5s ease; }
.portfolio-card:hover img { transform: scale(1.035); }
.portfolio-card::after { content: ""; position: absolute; inset: 40% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.88)); }
.portfolio-card div { position: absolute; z-index: 1; right: 26px; bottom: 26px; left: 26px; }
.portfolio-card span { color: var(--sand); font-size: 12px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.portfolio-card h3 { margin: 8px 0 0; font-family: Georgia, serif; font-size: 30px; }
.package-callout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-block: 100px;
  padding: clamp(34px, 6vw, 70px);
  border-radius: 34px;
  background: var(--sand);
}
.package-callout h2 { margin-bottom: 10px; }
.package-callout p:last-child { max-width: 680px; margin-bottom: 0; line-height: 1.65; }
.final-cta { margin-bottom: 100px; padding: clamp(40px, 8vw, 90px); border-radius: 38px; color: white; background: var(--ink); }
.final-cta h2 { max-width: 850px; }

.page-hero { padding-block: 110px 60px; }
.page-hero h1 { max-width: 980px; }
.package-detail {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 18px;
  margin-bottom: 90px;
}
.package-price, .feature-list { padding: clamp(30px, 5vw, 60px); border-radius: 30px; }
.package-price { color: white; background: var(--ink); }
.package-price .eyebrow { color: var(--sand); }
.package-price strong { display: block; font-family: Georgia, serif; font-size: clamp(50px, 7vw, 80px); font-weight: 500; }
.package-price > span { display: block; margin: 4px 0 24px; color: var(--sand); font-size: 24px; font-weight: 850; }
.package-price p:not(.eyebrow) { color: rgba(255,255,255,.76); }
.feature-list { display: grid; gap: 0; border: 1px solid var(--line); background: var(--paper); }
.feature-list div { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 19px; }
.feature-list div:last-child { border: 0; }
.feature-list span { color: var(--gold); font-weight: 900; }
.process { padding-bottom: 100px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process article { padding-top: 24px; border-top: 2px solid var(--sand); }
.process article > span { color: var(--gold); font-weight: 900; }
.process h2 { margin: 24px 0 10px; font-size: 32px; }
.process p { color: var(--ink-soft); line-height: 1.6; }

.portfolio-list { padding-bottom: 110px; }
.portfolio-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: clamp(30px, 7vw, 90px);
  align-items: center;
  padding-block: 48px;
  border-top: 1px solid var(--line);
}
.portfolio-feature:nth-child(even) .portfolio-image { order: 2; }
.portfolio-image { max-height: 650px; overflow: hidden; border-radius: 28px; box-shadow: var(--shadow); }
.portfolio-image img { height: 650px; object-fit: cover; object-position: top; }
.portfolio-copy p:not(.eyebrow) { color: var(--ink-soft); font-size: 18px; line-height: 1.7; }
.portfolio-copy .button { margin-top: 16px; }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 20px; padding-bottom: 110px; }
.contact-panel, .contact-form { padding: clamp(28px, 5vw, 54px); border-radius: 30px; }
.contact-panel { color: white; background: var(--ink); }
.contact-panel .eyebrow { color: var(--sand); }
.contact-panel > p:not(.eyebrow) { color: rgba(255,255,255,.75); line-height: 1.65; }
.contact-panel dl { margin-top: 58px; }
.contact-panel dl div { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.18); }
.contact-panel dt { margin-bottom: 5px; color: var(--sand); font-size: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.contact-panel dd { margin: 0; }
.contact-form { display: grid; gap: 18px; border: 1px solid var(--line); background: var(--paper); }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.contact-form label { display: grid; gap: 8px; font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 15px 16px;
  color: var(--ink);
  background: white;
}
.contact-form textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { margin: 0; color: var(--ink-soft); font-size: 14px; }
.flash { width: min(1180px, calc(100% - 40px)); margin: 18px auto; padding: 14px 18px; border-radius: 14px; background: #dbe9df; font-weight: 750; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  padding: 58px max(20px, calc((100vw - 1180px) / 2));
  color: rgba(255,255,255,.78);
  background: #101813;
}
.footer-brand { color: white; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: end; gap: 18px; }
.company-note { grid-column: 1 / -1; margin: 12px 0 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); }
.floating-whatsapp {
  position: fixed;
  z-index: 15;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 58px;
  aspect-ratio: 1;
  place-items: center;
  border: 4px solid var(--cream);
  border-radius: 50%;
  color: white;
  background: #218c4d;
  box-shadow: 0 12px 32px rgba(0,0,0,.22);
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 900px) {
  .menu-button { display: grid; width: 48px; height: 48px; padding: 12px; place-content: center; gap: 5px; border-radius: 50%; background: var(--ink); }
  .menu-button > span:not(.sr-only) { display: block; width: 23px; height: 2px; background: white; }
  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: grid; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { transform: none; }
  .service-grid, .service-grid-wide { grid-template-columns: repeat(2, 1fr); }
  .portfolio-preview { grid-template-columns: 1fr; }
  .portfolio-card { min-height: 540px; }
  .package-detail, .contact-layout { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-feature { grid-template-columns: 1fr; }
  .portfolio-feature:nth-child(even) .portfolio-image { order: 0; }
}

@media (max-width: 620px) {
  .shell { width: min(100% - 28px, 1180px); }
  .site-header { min-height: 76px; padding-inline: 14px; }
  .brand { font-size: 15px; }
  .brand-mark { width: 44px; }
  h1 { font-size: clamp(48px, 15vw, 72px); }
  .hero { gap: 38px; padding-block: 54px; }
  .hero-visual img { min-height: 390px; }
  .button-row, .button-row .button { width: 100%; }
  .section { padding-block: 76px; }
  .section-heading { display: block; }
  .section-heading .text-link { display: inline-block; margin-top: 20px; }
  .service-grid, .service-grid-wide, .process-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 230px; }
  .package-callout { display: block; margin-block: 72px; }
  .package-callout .button { width: 100%; margin-top: 20px; }
  .page-hero { padding-block: 80px 42px; }
  .form-row { grid-template-columns: 1fr; }
  .portfolio-image, .portfolio-image img { height: 510px; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: start; }
}
