:root {
  --bg: #f7f3ee;
  --panel: #ffffff;
  --panel-alt: #f0e7dd;
  --ink: #181b22;
  --muted: #5f6674;
  --gold: #b78b4f;
  --gold-deep: #8b6530;
  --navy: #1a2634;
  --navy-soft: #2b3d52;
  --shadow: 0 18px 45px rgba(20, 24, 31, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(246, 241, 236, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(24, 27, 34, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}

.brand strong,
.brand small {
  display: block;
  font-family: "Playfair Display", serif;
}

.brand strong {
  font-size: 1.45rem;
  line-height: 1;
}

.brand small {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: white;
  font-weight: 700;
  font-family: "Playfair Display", serif;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  position: relative;
  color: var(--navy);
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 12px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--gold-deep);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  margin: 6px 0;
  border-radius: 999px;
  background: var(--ink);
}

.hero {
  padding: 72px 0 48px;
  background: radial-gradient(circle at top, rgba(183, 139, 79, 0.2), transparent 30%), #f5efe8;
}

.hero-grid,
.split-layout,
.story-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.story-grid h2,
.contact-copy h2 {
  font-family: "Playfair Display", serif;
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin: 0 0 18px;
  color: var(--navy);
}

.hero-copy h1 {
  font-size: clamp(2.75rem, 4vw, 4.65rem);
}

.section-heading h2,
.story-grid h2,
.contact-copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.73rem;
  font-weight: 700;
}

.eyebrow.dark {
  color: var(--navy);
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 600px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: white;
  box-shadow: 0 18px 30px rgba(139, 101, 48, 0.25);
}

.button.secondary {
  border-color: rgba(26, 38, 52, 0.16);
  background: rgba(255,255,255,0.15);
}

.full-width {
  width: 100%;
}

.trust-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--navy);
  font-weight: 600;
}

.trust-list li {
  position: relative;
  padding-left: 22px;
}

.trust-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-deep);
}

.footer-location-note {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  font-size: 0.94rem;
  line-height: 1.6;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.media-card {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #ddd;
}

.media-card.large {
  left: 0;
  top: 70px;
  width: 78%;
  height: 380px;
}

.media-card.small {
  width: 45%;
  height: 180px;
  border: 7px solid rgba(255,255,255,0.7);
}

.media-card.small.top {
  right: 0;
  top: 0;
}

.media-card.small.bottom {
  left: 90px;
  bottom: 0;
}

.media-card img {
  height: 100%;
  object-fit: cover;
}

.logo-strip {
  background: var(--navy);
  color: rgba(255,255,255,0.78);
  padding: 18px 0;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.section {
  padding: 90px 0;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading.left {
  text-align: left;
}

.section-heading.center {
  text-align: center;
}

.service-grid,
.mini-grid {
  display: grid;
  gap: 24px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-grid.cards-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-grid.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card {
  background: var(--panel);
  border: 1px solid rgba(24, 27, 34, 0.06);
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 12px 25px rgba(24, 27, 34, 0.04);
}

.info-card.compact {
  padding: 24px 20px;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(183, 139, 79, 0.12);
  font-size: 1.75rem;
}

.info-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  color: var(--navy);
}

.info-card p,
.feature-box p,
.contact-copy p,
.story-grid p,
.site-footer p,
.site-footer li {
  color: var(--muted);
}

.accent-section {
  background: linear-gradient(180deg, rgba(183, 139, 79, 0.05), rgba(255,255,255,0.3));
}

.process-list {
  display: grid;
  gap: 24px;
  margin-top: 30px;
}

.process-list > div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
}

.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(183, 139, 79, 0.1);
  color: var(--gold-deep);
  font-weight: 800;
}

.process-list h3 {
  margin: 0 0 6px;
  color: var(--navy);
}

.showcase-panel {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.showcase-panel img {
  height: 100%;
  min-height: 475px;
  object-fit: cover;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow);
  background: #ddd;
}

.gallery-item img {
  height: 310px;
  object-fit: cover;
}

.page-hero {
  padding: 90px 0 52px;
  background: linear-gradient(135deg, rgba(26,38,52,0.92), rgba(43,61,82,0.88)),
    url("https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?auto=format&fit=crop&w=1400&q=80") center/cover;
  color: white;
}

.page-hero.small-hero { padding-bottom: 48px; }

.narrow {
  max-width: 760px;
}

.page-hero .eyebrow,
.page-hero h1 {
  color: white;
}

.pricing-table-wrap {
  overflow-x: auto;
  background: var(--panel);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.pricing-table th,
.pricing-table td {
  text-align: left;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(24,27,34,0.08);
  vertical-align: top;
}

.pricing-table th {
  background: rgba(24, 27, 34, 0.03);
  color: var(--navy);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-box {
  background: var(--panel);
  border: 1px solid rgba(24,27,34,0.06);
  border-radius: 22px;
  padding: 26px 24px;
  margin-bottom: 26px;
  box-shadow: 0 12px 25px rgba(24,27,34,0.04);
}

.story-grid {
  align-items: center;
  gap: 42px;
}

.story-image-wrap {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.story-image-wrap img {
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.contact-section {
  padding-top: 72px;
}

.contact-grid {
  align-items: start;
}

.contact-points {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  color: var(--navy);
  font-weight: 600;
}

.contact-points li::before {
  content: "•";
  color: var(--gold-deep);
  margin-right: 8px;
}

.faq-wrap {
  display: grid;
  gap: 20px;
}

.faq-item {
  background: var(--panel);
  border: 1px solid rgba(24,27,34,0.06);
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 12px 25px rgba(24,27,34,0.04);
}

.faq-item h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.2rem;
}

.contact-panel {
  background: var(--panel);
  border: 1px solid rgba(24,27,34,0.06);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 22px;
}

.field-row {
  display: grid;
  gap: 12px;
}

.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-status {
  margin: 0;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  font-weight: 600;
}

.form-status.success {
  background: rgba(34, 139, 34, 0.08);
  color: #236d2f;
  border: 1px solid rgba(34, 139, 34, 0.18);
}

.form-status.error {
  background: rgba(176, 44, 44, 0.08);
  color: #9b2c2c;
  border: 1px solid rgba(176, 44, 44, 0.18);
}

label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--navy);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(24,27,34,0.12);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(183, 139, 79, 0.35);
  border-color: rgba(183, 139, 79, 0.6);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

.site-footer {
  background: #171d27;
  color: rgba(255,255,255,0.76);
  padding-top: 54px;
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 14px;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 28px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-bottom {
  margin-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0 26px;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-layout,
  .story-grid,
  .contact-grid,
  .service-grid,
  .gallery-grid,
  .mini-grid.cards-4,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-grid,
  .gallery-grid,
  .mini-grid.cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .split-layout,
  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .logo-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 16px 22px;
    background: rgba(246, 241, 236, 0.98);
    border-bottom: 1px solid rgba(24, 27, 34, 0.08);
  }

  .site-nav.open {
    display: flex;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-copy h1 {
    font-size: 2.7rem;
  }

  .service-grid,
  .gallery-grid,
  .mini-grid.cards-2,
  .mini-grid.cards-4,
  .two-up,
  .footer-grid,
  .logo-row {
    grid-template-columns: 1fr;
  }

  .media-card.large {
    width: 100%;
    left: 0;
  }

  .media-card.small.top {
    display: none;
  }

  .media-card.small.bottom {
    left: 32px;
    bottom: -18px;
    width: 55%;
  }
}
