:root {
  --ink: #151515;
  --charcoal: #22201d;
  --muted: #6f6b64;
  --line: #e8e2d8;
  --paper: #ffffff;
  --soft: #f7f4ef;
  --gold: #b99452;
  --gold-dark: #8c6a31;
  --shadow: 0 24px 70px rgba(22, 19, 14, 0.12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
}

body::selection {
  background: var(--gold);
  color: #fff;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 10px 12px;
}

.skip-link:focus {
  left: 12px;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease;
}

body.admin-bar .site-header {
  top: 32px;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-color: var(--line);
  color: var(--ink);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 45px rgba(24, 22, 18, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.header-logo-stack,
.header-logo,
.brand-logo {
  display: block;
}

.header-logo-stack {
  position: relative;
  width: clamp(190px, 18vw, 252px);
  aspect-ratio: 857 / 199;
}

.header-logo,
.brand-logo {
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.24));
}

.header-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  transition: opacity 220ms ease, transform 220ms ease, filter 220ms ease;
}

.header-logo-sticky {
  opacity: 0;
  transform: translateY(4px);
}

.site-header.scrolled .header-logo-light {
  opacity: 0;
  transform: translateY(-4px);
}

.site-header.scrolled .header-logo-sticky {
  opacity: 1;
  transform: translateY(0);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.14));
}

.brand-logo {
  width: min(230px, 72vw);
}

.nav-links {
  display: flex;
  gap: clamp(18px, 3vw, 34px);
  color: currentColor;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  opacity: 0.78;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.2);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid currentColor;
  padding: 11px 18px;
  color: currentColor;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.header-cta::before {
  position: absolute;
  inset: 0;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
  z-index: -1;
}

.header-cta:hover {
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-1px);
}

.header-cta:hover::before {
  transform: scaleX(1);
}

.menu-toggle {
  position: relative;
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(12, 12, 12, 0.18);
  color: currentColor;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 200ms ease, width 200ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.site-header.scrolled .menu-toggle {
  border-color: rgba(185, 148, 82, 0.46);
  background: rgba(185, 148, 82, 0.08);
}

.site-header.menu-open .menu-toggle {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
  transform: translateY(-1px);
}

.site-header.menu-open .menu-toggle span:first-child {
  transform: rotate(45deg);
}

.site-header.menu-open .menu-toggle span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 18px;
  left: 18px;
  display: none;
  border: 1px solid rgba(185, 148, 82, 0.28);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 70px rgba(22, 19, 14, 0.18);
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 17px 18px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-menu a::after {
  color: var(--gold);
  content: ">";
  font-family: var(--sans);
}

.mobile-menu a:last-child {
  border-bottom: 0;
  background: var(--ink);
  color: #fff;
}

.mobile-menu a:last-child::after {
  color: var(--gold);
}

.site-header.menu-open .mobile-menu {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1556912172-45b7abe8b7e1?auto=format&fit=crop&w=1800&q=82&fm=jpg");
  background-position: center;
  background-size: cover;
  filter: saturate(0.8) contrast(1.04);
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 9, 8, 0.88) 0%, rgba(10, 9, 8, 0.63) 45%, rgba(10, 9, 8, 0.24) 100%),
    linear-gradient(0deg, rgba(10, 9, 8, 0.7), rgba(10, 9, 8, 0.02) 56%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: 148px 0 clamp(42px, 9vh, 82px);
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
}

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(44px, 7.2vw, 82px);
}

h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 58px);
}

h3 {
  margin-bottom: 12px;
  color: var(--charcoal);
  font-size: 19px;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 13px 22px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  overflow: hidden;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn::after {
  position: absolute;
  inset: -60% auto -60% -42%;
  width: 36%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  content: "";
  transform: skewX(-18deg);
  transition: left 520ms ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:hover::after {
  left: 118%;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
}

.btn-primary:hover {
  background: var(--gold-dark);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.58);
  color: #fff;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-strip span {
  border-left: 1px solid var(--gold);
  padding: 4px 18px 4px 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.section {
  padding: clamp(72px, 9vw, 122px) clamp(18px, 4vw, 56px);
}

.section-head {
  width: min(1060px, 100%);
  margin: 0 auto 36px;
}

.section-head.centered {
  text-align: center;
}

.section-head p:not(.eyebrow),
.quote-copy p,
.final-cta p {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
}

.centered p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
}

.split-section {
  background: var(--soft);
}

.objective-grid,
.service-grid,
.trust-grid {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  gap: 18px;
}

.objective-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.statement-card,
.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 55px rgba(23, 20, 15, 0.06);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.statement-card::before,
.service-card::before {
  position: absolute;
  inset: 0;
  border-top: 2px solid var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.18);
  transform-origin: left;
  transition: opacity 220ms ease, transform 260ms ease;
  pointer-events: none;
}

.statement-card:hover,
.service-card:hover {
  border-color: rgba(185, 148, 82, 0.46);
  box-shadow: 0 28px 72px rgba(23, 20, 15, 0.13);
  transform: translateY(-6px);
}

.statement-card:hover::before,
.service-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.statement-card {
  min-height: 260px;
  padding: clamp(28px, 4vw, 42px);
}

.statement-card p,
.service-card p,
.trust-block p {
  margin-bottom: 0;
  color: var(--muted);
}

.line-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(185, 148, 82, 0.34);
  color: var(--gold);
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.statement-card:hover .line-icon,
.service-card:hover .line-icon {
  background: var(--gold);
  color: #fff;
  transform: translateY(-3px);
}

.line-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.service-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-card {
  min-height: 300px;
  padding: 28px;
}

.service-card.featured {
  background: var(--ink);
  color: #fff;
}

.service-card.featured h3 {
  color: #fff;
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.72);
}

.kitchen-focus {
  padding: clamp(64px, 8vw, 104px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(90deg, rgba(21, 21, 21, 0.88), rgba(21, 21, 21, 0.72)),
    url("https://images.unsplash.com/photo-1556912172-45b7abe8b7e1?auto=format&fit=crop&w=1600&q=78&fm=jpg");
  background-position: center;
  background-size: cover;
  color: #fff;
}

.kitchen-focus-inner {
  width: min(980px, 100%);
  margin: 0 auto;
}

.kitchen-focus h2 {
  max-width: 760px;
  color: #fff;
}

.kitchen-focus p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.kitchen-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.kitchen-points span {
  border: 1px solid rgba(185, 148, 82, 0.46);
  background: rgba(255, 255, 255, 0.06);
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dark-section {
  background: var(--ink);
  color: #fff;
}

.dark-section h2,
.dark-section h3 {
  color: #fff;
}

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-block {
  position: relative;
  border-top: 1px solid rgba(185, 148, 82, 0.75);
  padding: 24px 0 0;
  transition: transform 220ms ease;
}

.trust-block::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 34%;
  height: 1px;
  background: #fff;
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 220ms ease, transform 260ms ease;
}

.trust-block:hover {
  transform: translateY(-4px);
}

.trust-block:hover::before {
  opacity: 0.9;
  transform: scaleX(1);
}

.trust-block p {
  color: rgba(255, 255, 255, 0.68);
}

.project-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
    url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1600&q=78");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.project-list {
  display: grid;
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
}

.project-list li {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  padding: 18px 16px;
  color: var(--charcoal);
  text-align: center;
  transition: border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.project-list li::before {
  position: absolute;
  inset: auto 18px 10px;
  height: 1px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.2);
  transition: opacity 180ms ease, transform 180ms ease;
}

.project-list li:hover {
  border-color: rgba(185, 148, 82, 0.52);
  box-shadow: 0 16px 36px rgba(23, 20, 15, 0.08);
  color: var(--ink);
  transform: translateY(-3px);
}

.project-list li:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.quote-band {
  display: grid;
  padding: clamp(72px, 9vw, 122px) clamp(18px, 4vw, 56px);
  background: var(--soft);
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(28px, 5vw, 70px);
}

.quote-copy {
  align-self: start;
  max-width: 520px;
  margin-left: auto;
}

.quote-form {
  width: min(760px, 100%);
  padding: clamp(24px, 4vw, 40px);
  background: #fff;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

label span {
  display: block;
  margin-bottom: 8px;
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(185, 148, 82, 0.14);
}

.full {
  grid-column: 1 / -1;
}

.form-error {
  min-height: 22px;
  margin: 14px 0 12px;
  color: #9a321b;
  font-size: 14px;
}

.form-submit {
  width: 100%;
}

.thank-you {
  margin: 16px 0 0;
  border: 1px solid rgba(185, 148, 82, 0.4);
  background: rgba(185, 148, 82, 0.1);
  padding: 14px;
  color: var(--charcoal);
}

.final-cta {
  padding: clamp(72px, 10vw, 128px) 18px;
  background: var(--ink);
  color: #fff;
  text-align: center;
}

.final-cta > div {
  width: min(780px, 100%);
  margin: 0 auto;
}

.final-cta h2 {
  color: #fff;
}

.final-cta p {
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.72);
}

.mobile-whatsapp {
  position: fixed;
  z-index: 35;
  right: 16px;
  bottom: 16px;
  display: none;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(185, 148, 82, 0.62);
  background:
    linear-gradient(135deg, rgba(185, 148, 82, 0.96), rgba(140, 106, 49, 0.98)),
    var(--gold);
  color: #fff;
  padding: 13px 18px 13px 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 18px 45px rgba(23, 20, 15, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.mobile-whatsapp::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  content: "";
  transform: translateX(-120%) skewX(-18deg);
  transition: transform 620ms ease;
}

.mobile-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(23, 20, 15, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.mobile-whatsapp:hover::before {
  transform: translateX(120%) skewX(-18deg);
}

.whatsapp-icon {
  position: relative;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: #25d366;
}

.whatsapp-icon svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.mobile-whatsapp span:last-child {
  position: relative;
}

.footer {
  display: grid;
  padding: 44px clamp(18px, 4vw, 56px) 28px;
  background: #0d0d0d;
  color: rgba(255, 255, 255, 0.72);
  grid-template-columns: 1.1fr 0.8fr 0.8fr;
  gap: 28px;
}

.footer h2 {
  margin-bottom: 12px;
  color: #fff;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer li,
.footer p {
  margin: 0 0 8px;
}

.footer-brand {
  margin-bottom: 16px;
  color: #fff;
}

.footer-brand .brand-logo {
  width: min(260px, 76vw);
}

.copyright {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card.featured {
    grid-column: 1 / -1;
  }

  .trust-grid,
  .project-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 14px 18px;
  }

  .header-logo {
    width: 100%;
  }

  .header-logo-stack {
    width: 176px;
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .menu-toggle,
  .mobile-menu {
    display: flex;
  }

  .mobile-menu {
    flex-direction: column;
    pointer-events: none;
    visibility: hidden;
  }

  .site-header.menu-open .mobile-menu {
    pointer-events: auto;
    visibility: visible;
  }

  .hero {
    min-height: 94vh;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-top: 118px;
  }

  .objective-grid,
  .quote-band,
  .form-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .quote-copy {
    max-width: none;
    margin-left: 0;
  }

  .mobile-whatsapp {
    display: inline-flex;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-actions,
  .trust-strip,
  .service-grid,
  .trust-grid,
  .project-list {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .service-grid,
  .trust-grid,
  .project-list {
    display: grid;
  }

  .statement-card,
  .service-card,
  .quote-form {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }

  .btn::after {
    display: none;
  }
}
