:root {
  --navy: #0b2d4c;
  --navy-2: #123c61;
  --green: #667e43;
  --gold: #c2a358;
  --sky: #dfeff8;
  --cream: #fbfaf5;
  --ink: #183047;
  --muted: #60707d;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(11, 45, 76, .14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img { max-width: 100%; }

a { color: inherit; }

.shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 245, .94);
  border-bottom: 1px solid rgba(11, 45, 76, .08);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand img {
  width: 170px;
  display: block;
  mix-blend-mode: multiply;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: .96rem;
}

.nav-cta {
  padding: 11px 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(7,31,52,.94) 0%, rgba(11,45,76,.84) 48%, rgba(11,45,76,.34) 100%),
    url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1900&q=85") center/cover;
  color: white;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -160px 40%;
  height: 320px;
  background: rgba(194,163,88,.25);
  transform: rotate(-8deg);
  border-radius: 50%;
  filter: blur(10px);
}

.hero-grid {
  min-height: 690px;
  padding: 90px 0;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 800;
}

.hero h1,
.section h2 {
  font-family: "Playfair Display", Georgia, serif;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.6rem, 8vw, 6.7rem);
  line-height: .92;
  letter-spacing: -.04em;
}

.hero h1 span { color: #d8c185; }

.hero-text {
  max-width: 670px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.85);
  font-size: 1.15rem;
}

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

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}

.primary { background: var(--gold); color: #15283b; }
.secondary { border: 1px solid rgba(255,255,255,.45); color: white; background: rgba(255,255,255,.08); }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
  color: rgba(255,255,255,.75);
  font-size: .9rem;
}

.trust-row span::before {
  content: "✓";
  color: #d8c185;
  margin-right: 7px;
  font-weight: 900;
}

.quote-card {
  padding: 34px;
  color: var(--ink);
  background: rgba(255,255,255,.95);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.quote-card h2 { margin: 5px 0 7px; font-size: 2rem; line-height: 1.1; }
.quote-card > p { color: var(--muted); }
.quote-kicker { color: var(--green) !important; font-weight: 800; text-transform: uppercase; font-size: .75rem; letter-spacing: .12em; }

.contact-line {
  display: block;
  padding: 17px 0;
  text-decoration: none;
  border-top: 1px solid rgba(11,45,76,.12);
}

.contact-line span,
.contact-line strong { display: block; }
.contact-line span { color: var(--muted); font-size: .82rem; }
.contact-line strong { color: var(--navy); font-size: 1.05rem; }

.quote-card small { color: var(--muted); }

.section { padding: 100px 0; }

.section-heading {
  max-width: 740px;
  margin-bottom: 42px;
}

.section h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.05;
}

.section-heading p,
.about-copy > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  padding: 30px 26px;
  background: white;
  border: 1px solid rgba(11,45,76,.08);
  border-radius: 14px;
  box-shadow: 0 10px 35px rgba(11,45,76,.07);
}

.service-card .icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 800;
}

.service-card h3 { margin: 20px 0 7px; color: var(--navy); }
.service-card p { margin: 0; color: var(--muted); font-size: .94rem; }

.about { background: white; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  align-items: center;
}

.about-art {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(#bfe1f2 0 57%, #d5c073 57%);
  box-shadow: var(--shadow);
}

.sun {
  position: absolute;
  width: 90px;
  height: 90px;
  top: 52px;
  right: 65px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 45px white;
}

.field {
  position: absolute;
  width: 130%;
  height: 190px;
  left: -15%;
  bottom: -45px;
  border-radius: 50%;
  transform: rotate(-6deg);
}

.field-one { background: #7a8f4d; bottom: -10px; }
.field-two { background: #c5a95b; bottom: -85px; transform: rotate(6deg); }

.river {
  position: absolute;
  width: 160px;
  height: 400px;
  left: 42%;
  bottom: -145px;
  background: #dff2fa;
  border-radius: 50%;
  transform: rotate(17deg);
}

.window-lines::before,
.window-lines::after {
  content: "";
  position: absolute;
  background: var(--navy);
  opacity: .9;
}

.window-lines::before { width: 12px; height: 100%; left: 50%; top: 0; }
.window-lines::after { height: 12px; width: 100%; left: 0; top: 48%; }

.about-copy h2 { margin-bottom: 24px; }

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.check-list li {
  position: relative;
  padding: 9px 0 9px 32px;
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.gallery { background: #f1f3ec; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.placeholder {
  aspect-ratio: 4/5;
  border-radius: 12px;
  background:
    linear-gradient(rgba(11,45,76,.3), rgba(11,45,76,.3)),
    repeating-linear-gradient(90deg, #8fa2aa 0 2px, #d8e1e4 2px 7px);
  display: grid;
  place-items: end start;
  padding: 18px;
  box-shadow: inset 0 0 0 1px rgba(11,45,76,.08);
}

.placeholder.clean {
  background:
    linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.1)),
    linear-gradient(135deg, #c7e5f4, #f7fbfd);
}

.placeholder span {
  padding: 6px 11px;
  border-radius: 999px;
  color: white;
  background: var(--navy);
  font-size: .8rem;
  font-weight: 800;
}

.contact { padding-top: 0; background: #f1f3ec; }

.contact-box {
  padding: 56px;
  border-radius: 20px;
  background: var(--navy);
  color: white;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.contact-box h2 { color: white; }
.contact-box p:not(.eyebrow) { color: rgba(255,255,255,.75); }

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.light { background: white; color: var(--navy); }
.outline-light { border: 1px solid rgba(255,255,255,.45); color: white; }

footer {
  padding: 28px 0;
  background: #071f34;
  color: rgba(255,255,255,.65);
  font-size: .9rem;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-wrap strong,
.footer-wrap span { display: block; }
.footer-wrap strong { color: white; }

@media (max-width: 880px) {
  nav a:not(.nav-cta) { display: none; }
  .hero-grid,
  .about-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 35px; padding: 70px 0; }
  .service-grid,
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-box { align-items: flex-start; flex-direction: column; }
  .contact-actions { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 28px, 1120px); }
  .brand img { width: 135px; }
  .nav-wrap { min-height: 70px; }
  .nav-cta { padding: 9px 13px; font-size: .84rem; }
  .hero h1 { font-size: 3.4rem; }
  .service-grid,
  .gallery-grid { grid-template-columns: 1fr; }
  .section { padding: 75px 0; }
  .about-art { min-height: 360px; }
  .contact-box { padding: 36px 25px; }
  .footer-wrap { flex-direction: column; }
}
