@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #f6efe3;
  --bg-soft: #fbf7f0;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: #fffdf8;
  --ink: #19261f;
  --muted: #55655d;
  --forest: #17382a;
  --forest-soft: #24513f;
  --forest-deep: #0f251b;
  --gold: #ba8b44;
  --gold-soft: #d3b07a;
  --line: rgba(25, 38, 31, 0.1);
  --shadow-lg: 0 24px 60px rgba(16, 26, 21, 0.12);
  --shadow-md: 0 16px 34px rgba(16, 26, 21, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 2rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(186, 139, 68, 0.17), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(36, 81, 63, 0.18), transparent 18%),
    linear-gradient(180deg, #f8f2e8 0%, #f3eadb 55%, #f7f2e9 100%);
  line-height: 1.6;
}

body,
button,
input,
textarea {
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

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

section[id] {
  scroll-margin-top: 7rem;
}

p,
h1,
h2,
h3,
figure,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -3.5rem;
  left: 1rem;
  z-index: 100;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  color: #f8f4ec;
  background: var(--forest-deep);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section {
  padding: clamp(3.75rem, 7vw, 6rem) 0;
}

.site-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(18px);
  pointer-events: none;
}

.site-shell::before {
  width: 18rem;
  height: 18rem;
  top: 14rem;
  left: -6rem;
  background: rgba(186, 139, 68, 0.1);
}

.site-shell::after {
  width: 16rem;
  height: 16rem;
  right: -4rem;
  top: 44rem;
  background: rgba(36, 81, 63, 0.08);
}

.announcement-bar {
  position: relative;
  z-index: 20;
  background: var(--forest);
  color: #f8f4ec;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  font-size: 0.94rem;
}

.announcement-inner p {
  max-width: 48rem;
}

.announcement-inner a {
  flex-shrink: 0;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(250, 245, 236, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(25, 38, 31, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand img {
  width: 3.3rem;
  height: 3.3rem;
  object-fit: cover;
  border-radius: 1rem;
  border: 1px solid rgba(25, 38, 31, 0.08);
  box-shadow: var(--shadow-md);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}

.brand-kicker {
  font-size: 0.72rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--muted);
}

.brand strong {
  font-size: 1rem;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.92rem 1.4rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.96rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #f8f4ec;
  background: linear-gradient(135deg, var(--forest-soft), var(--forest-deep));
  box-shadow: 0 18px 36px rgba(23, 56, 42, 0.22);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(25, 38, 31, 0.12);
}

.button-link {
  padding-inline: 0;
  border-radius: 0;
  font-weight: 800;
  color: var(--forest-soft);
  background: transparent;
  box-shadow: none;
}

.hero {
  padding-top: clamp(3rem, 5vw, 5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(1.4rem, 4vw, 2.4rem);
  align-items: start;
}

.hero-copy,
.hero-visual,
.focus-card,
.gallery-card,
.service-card,
.process-card,
.faq-card,
.contact-card {
  opacity: 1;
}

.hero-visual {
  opacity: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(25, 38, 31, 0.08);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--forest-soft);
}

.eyebrow::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--forest-soft));
}

.eyebrow-dark {
  background: rgba(255, 255, 255, 0.12);
  color: #e4efe8;
  border-color: rgba(255, 255, 255, 0.14);
}

.hero h1,
.section-heading h1,
.section-heading h2,
.value-copy h2,
.focus-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.95;
}

.hero h1 {
  max-width: 12ch;
  margin-top: 1rem;
  font-size: 5.6rem;
}

.hero-lead {
  max-width: 39rem;
  margin-top: 1.2rem;
  font-size: 1.08rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.9rem;
}

.hero-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.hero-pills span {
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(25, 38, 31, 0.08);
  box-shadow: var(--shadow-md);
  font-size: 0.94rem;
  font-weight: 700;
}

.hero-visual {
  display: grid;
  gap: 1rem;
}

.hero-photo-card,
.gallery-card,
.service-card,
.process-card,
.faq-card,
.contact-card,
.focus-card,
.mini-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(25, 38, 31, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.hero-photo-card {
  display: grid;
  align-content: end;
  min-height: 0;
  max-height: 600px;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(180deg, rgba(15, 37, 27, 0.74), rgba(15, 37, 27, 0.74)),
    radial-gradient(circle at top, rgba(186, 139, 68, 0.18), transparent 36%),
    #13231b;
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: 600px;
  object-fit: cover;
  object-position: center 26%;
}

.hero-photo-card figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 1.35rem;
  background: rgba(15, 37, 27, 0.84);
  color: #edf5ef;
}

.hero-photo-card strong,
.gallery-card strong {
  display: block;
  margin-bottom: 0.22rem;
  font-size: 1.02rem;
}

.hero-side-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

.mini-card {
  min-height: 0;
}

.mini-card-copy {
  padding: 1.35rem;
}

.mini-label {
  display: inline-block;
  margin-bottom: 0.8rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--forest-soft);
}

.mini-card-copy h2 {
  font-size: 2.15rem;
  margin-bottom: 0.7rem;
  line-height: 1;
}

.mini-card-copy p {
  color: var(--muted);
}

.mini-card-photo img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 24%;
  background: #13231b;
}

.mini-card-photo figcaption {
  padding: 0.85rem 1rem 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.cta-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.focus-strip {
  padding-top: 0;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.focus-card {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.58);
}

.focus-number {
  display: inline-flex;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--gold);
}

.focus-card h2 {
  margin-bottom: 0.8rem;
  font-size: 2.45rem;
}

.focus-card p,
.section-heading p,
.gallery-card span,
.service-card p,
.process-card p,
.faq-card p,
.contact-copy p,
.contact-card p {
  color: var(--muted);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1rem 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-heading h1,
.section-heading h2,
.value-copy h2 {
  margin-top: 0.85rem;
  font-size: 4.25rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.gallery-card {
  grid-column: span 4;
  background: rgba(255, 255, 255, 0.68);
  align-self: start;
  max-height: 500px;
  overflow: hidden;
}

.gallery-card-large {
  grid-column: span 8;
  max-height: 500px;
}

.gallery-card-tall {
  grid-column: span 6;
  max-height: 500px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 24%;
  max-height: 500px;
}

.gallery-card-tall img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #13231b;
  max-height: 500px;
}

.gallery-card figcaption {
  padding: 1rem 1.1rem 1.2rem;
}

.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

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

.video-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(25, 38, 31, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-lg);
  max-width: 100%;
}

.video-frame {
  background: #101d16;
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: #101d16;
}

.video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-copy {
  padding: 1rem 1.1rem 1.2rem;
}

.video-copy strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.02rem;
}

.video-copy p {
  color: var(--muted);
}

.video-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  padding: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(249, 243, 232, 0.92)),
    linear-gradient(135deg, rgba(186, 139, 68, 0.15), transparent 45%);
}

.service-card::before {
  content: "";
  display: block;
  width: 3rem;
  height: 0.22rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--forest-soft), var(--gold));
}

.service-card h3,
.process-card h3,
.faq-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.18rem;
  line-height: 1.35;
}

.value-band {
  color: #edf5ef;
}

.value-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.2rem 2rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(211, 176, 122, 0.24), transparent 28%),
    linear-gradient(135deg, #17382a 0%, #10261d 100%);
  box-shadow: var(--shadow-lg);
}

.value-list {
  display: grid;
  gap: 0.9rem;
}

.value-list li {
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 700;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.process-card,
.faq-card {
  padding: 1.35rem;
}

.process-card span {
  display: inline-flex;
  margin-bottom: 0.85rem;
  color: var(--forest-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.82fr);
  gap: 1.2rem 2rem;
  align-items: start;
}

.contact-copy h2 {
  margin-top: 0.8rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 4.2rem;
  line-height: 0.97;
  letter-spacing: 0;
}

.contact-copy p {
  margin-top: 1rem;
  max-width: 38rem;
}

.contact-card {
  padding: 1.4rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 242, 231, 0.96)),
    linear-gradient(135deg, rgba(186, 139, 68, 0.12), transparent 48%);
}

address.contact-card {
  font-style: normal;
}

.contact-label {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--forest-soft);
}

.contact-link {
  display: inline-block;
  margin-top: 0.3rem;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.35;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  font-weight: 700;
  color: var(--muted);
}

.social-links a:hover,
.social-links a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--forest-soft);
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: none;
  gap: 0.75rem;
  padding: 0.8rem 1rem calc(0.8rem + env(safe-area-inset-bottom, 0px));
  background: rgba(248, 242, 231, 0.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(25, 38, 31, 0.1);
  box-shadow: 0 -12px 28px rgba(16, 26, 21, 0.08);
}

.mobile-cta a {
  flex: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 3.2rem;
  border-radius: 999px;
  font-weight: 800;
}

.mobile-cta-call {
  color: #f8f4ec;
  background: linear-gradient(135deg, var(--forest-soft), var(--forest-deep));
}

.mobile-cta-text {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(25, 38, 31, 0.12);
}

.site-footer {
  padding: 1.5rem 0 2rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(25, 38, 31, 0.08);
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-weight: 700;
}

.sitemap-list {
  margin-top: 2rem;
}

.sitemap-list h2 {
  margin-bottom: 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  line-height: 1;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.sitemap-card {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(25, 38, 31, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-md);
}

.sitemap-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  line-height: 1.3;
}

.sitemap-card a {
  color: var(--forest-soft);
}

.sitemap-card p {
  color: var(--muted);
}

@media (max-width: 1100px) {
  .header-inner,
  .section-heading,
  .contact-grid,
  .value-band-inner {
    grid-template-columns: 1fr;
  }

  .header-inner {
    display: grid;
    align-items: center;
  }

  .hero h1 {
    font-size: 4.5rem;
  }

  .section-heading h2,
  .section-heading h1,
  .value-copy h2,
  .contact-copy h2 {
    font-size: 3.7rem;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .header-cta {
    justify-self: start;
  }

  .hero-grid,
  .focus-grid,
  .service-grid,
  .process-grid,
  .faq-grid,
  .video-grid,
  .sitemap-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-side-cards {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-card-large,
  .gallery-card-tall {
    grid-column: span 6;
  }

  .mini-card-copy h2,
  .focus-card h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 760px) {
  .announcement-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .announcement-inner a {
    font-size: 1rem;
  }

  .header-inner {
    gap: 0.85rem;
  }

  .brand {
    width: 100%;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .site-nav {
    width: calc(100% + 0.1rem);
    flex-wrap: nowrap;
    gap: 0.65rem;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.35rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    padding: 0.68rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(25, 38, 31, 0.08);
    white-space: nowrap;
  }

  .hero-grid,
  .hero-side-cards,
  .focus-grid,
  .service-grid,
  .process-grid,
  .faq-grid,
  .video-grid,
  .sitemap-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    margin-bottom: 1.4rem;
  }

  .hero-photo-card,
  .hero-photo-card img {
    min-height: 0;
  }

  .hero-photo-card {
    aspect-ratio: 4 / 5;
  }

  .hero-visual {
    order: -1;
  }

  .hero-visual .hero-side-cards {
    display: none;
  }

  .gallery-card,
  .gallery-card-large,
  .gallery-card-tall {
    grid-column: span 12;
  }

  .hero-pills {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
    font-size: 3.35rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions,
  .cta-stack,
  .contact-actions,
  .video-actions,
  .project-links {
    flex-direction: column;
  }

  .hero-actions .button,
  .cta-stack .button,
  .contact-actions .button,
  .video-actions .button,
  .project-links .button {
    width: 100%;
  }

  .section-heading h2,
  .section-heading h1,
  .value-copy h2,
  .contact-copy h2 {
    font-size: 2.8rem;
    line-height: 0.98;
  }

  .focus-card h2,
  .mini-card-copy h2 {
    font-size: 2rem;
  }

  .mini-card-photo img,
  .gallery-card img,
  .gallery-card-tall img {
    aspect-ratio: 4 / 5;
    object-position: center 22%;
    max-height: 400px;
  }

  .hero-photo-card {
    max-height: 400px;
  }

  .hero-photo-card img {
    max-height: 400px;
  }

  .gallery-card,
  .gallery-card-large,
  .gallery-card-tall {
    max-height: 400px;
  }

  .contact-link {
    font-size: 1.2rem;
  }

  .header-cta {
    width: 100%;
  }

  body {
    padding-bottom: 6rem;
  }

  .mobile-cta {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
