@font-face {
  font-family: "DM Serif Display";
  src: url("../fonts/dm-serif-display-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DM Serif Display";
  src: url("../fonts/dm-serif-display-italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-800.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --bg: #f6f1e8;
  --surface: rgba(255, 251, 245, 0.84);
  --surface-strong: #fffdf9;
  --text: #26211c;
  --muted: #6a5f55;
  --line: rgba(38, 33, 28, 0.12);
  --accent: #b07a52;
  --accent-deep: #7e5537;
  --accent-soft: #f0ddd0;
  --shadow: 0 24px 60px rgba(87, 62, 42, 0.12);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(228, 196, 164, 0.34), transparent 34%),
    radial-gradient(circle at right 20%, rgba(176, 122, 82, 0.1), transparent 28%),
    linear-gradient(180deg, #fbf7f1 0%, #f6f1e9 55%, #f1e8dc 100%);
  min-height: 100vh;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(251, 247, 241, 0.82);
  border-bottom: 1px solid rgba(38, 33, 28, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: none;
}

.brand img {
  width: 85px;
  height: 40px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 0.1rem;
  line-height: 1;
}

.brand-text span {
  font-size: 1.18rem;
}

.brand-text small {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.14em;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.35rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  border-radius: 99px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 0.85rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  transition: 180ms ease;
}

.nav-links .button {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  border: 0;
}

.nav-links .button:hover,
.nav-links .button.active {
  color: #fff;
  background: linear-gradient(135deg, #c1885d 0%, var(--accent-deep) 100%);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.65);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(126, 85, 55, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(126, 85, 55, 0.24);
  background: var(--accent-deep);
}

.button.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

.button.secondary:hover {
  transform: translateY(-1px);
  background: rgba(176, 122, 82, 0.1);
  border-color: rgba(126, 85, 55, 0.35);
  box-shadow: 0 12px 28px rgba(126, 85, 55, 0.12);
}

.button:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(176, 122, 82, 0.22),
    0 18px 38px rgba(126, 85, 55, 0.24);
}

.button.secondary:focus-visible {
  background: rgba(176, 122, 82, 0.12);
  border-color: rgba(126, 85, 55, 0.45);
  box-shadow:
    0 0 0 4px rgba(176, 122, 82, 0.22),
    0 12px 28px rgba(126, 85, 55, 0.14);
}

.page-hero,
.hero {
  padding: 3.5rem 0 5rem;
}

.hero-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--accent-deep);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.legal-wrapper h1 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
  overflow-wrap: break-word;
  hyphens: auto;
}

.hero h1,
.page-hero h1 {
  margin: 1rem 0 1.25rem;
  font-size: clamp(3rem, 7vw, 6rem);
  max-width: 11ch;
}

.hero p,
.page-hero p,
.section-heading p,
.copy p,
.legal-wrapper p,
.legal-wrapper li {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.hero-points,
.stats,
.service-points,
.contact-list,
.detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-points.tight {
  max-width: 34rem;
}

.hero-points li,
.service-points li,
.detail-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.hero-points li {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(29, 34, 32, 0.08);
  color: var(--text);
}

.hero-points li::before,
.service-points li::before,
.detail-list li::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  margin-top: 0.4rem;
  border-radius: 999px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--accent), #e4b691);
}

.hero-points li::before {
  margin-top: 0.28rem;
  width: 0.55rem;
  height: 0.55rem;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-card,
.glass-card,
.service-card,
.testimonial-card,
.gallery-card,
.feature-card,
.contact-card,
.legal-wrapper,
.cta-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-card {
  position: absolute;
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card.primary {
  inset: 2rem 0 7rem 4rem;
}

.hero-card.secondary {
  width: 240px;
  height: 280px;
  left: 0;
  bottom: 2.5rem;
  padding: 0.75rem;
}

.hero-card.secondary img {
  border-radius: calc(var(--radius) - 8px);
}

.floating-note {
  position: absolute;
  right: 1rem;
  bottom: 2rem;
  max-width: 250px;
  padding: 1.1rem 1.2rem;
}

.floating-note strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: var(--muted);
}

.section {
  padding: 1.5rem 0 5rem;
}

.section-heading {
  margin-bottom: 2rem;
  max-width: 760px;
}

.section-heading h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

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

.stats li,
.feature-card,
.testimonial-card,
.contact-card {
  padding: 1.45rem;
}

.stats strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.2rem;
}

.services-grid,
.feature-grid,
.testimonial-grid,
.gallery-grid,
.contact-grid,
.media-grid {
  display: grid;
  gap: 1.25rem;
}

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

.service-card {
  overflow: hidden;
}

.service-image {
  aspect-ratio: 1.2 / 1;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: 1.6rem;
}

.service-meta {
  display: inline-flex;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-content h3,
.feature-card h3,
.testimonial-card h3,
.gallery-card h3,
.contact-card h3,
.media-info h3 {
  margin: 0 0 0.75rem;
  font-size: 1.45rem;
}

.service-points {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

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

.feature-card {
  min-height: 100%;
}

.feature-card .icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(176, 122, 82, 0.18), rgba(240, 221, 208, 0.46));
  color: var(--accent-deep);
  font-weight: 800;
}

.split-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.4rem;
  align-items: stretch;
}

.split-panel img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
}

.copy {
  padding: 2rem;
}

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

.testimonial-card {
  position: relative;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  font-family: "DM Serif Display", serif;
  font-size: 4rem;
  color: rgba(196, 106, 47, 0.16);
  line-height: 1;
}

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

.gallery-card {
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery-card .gallery-copy {
  padding: 1rem 1.15rem 1.2rem;
}

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

.photo-tile {
  overflow: hidden;
  padding: 0.35rem;
}

.photo-tile img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: calc(var(--radius-sm) - 2px);
}

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

.media-panel {
  overflow: hidden;
}

.media-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.media-info {
  padding: 1.4rem;
}

.contact-grid {
  grid-template-columns: 0.88fr 1.12fr;
  align-items: start;
}

.contact-card {
  min-height: 100%;
}

.contact-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.3rem 0 1.6rem;
}

.contact-list a,
.footer-links a {
  color: var(--accent-deep);
}

.route-button {
  justify-self: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

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

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.field label {
  font-weight: 700;
  font-size: 0.92rem;
}

.field input,
.field textarea {
  width: 100%;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(31, 29, 26, 0.12);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
}

.field textarea {
  min-height: 180px;
  resize: vertical;
}

.message-box,
.error-box {
  display: none;
  min-height: 1.5rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1.55;
}

.message-box {
  color: #215336;
  background: rgba(226, 244, 232, 0.95);
  border-color: rgba(33, 83, 54, 0.18);
}

.error-box {
  color: #8c3b23;
  background: rgba(250, 233, 225, 0.96);
  border-color: rgba(140, 59, 35, 0.18);
}

.message-box.is-visible,
.error-box.is-visible {
  display: block;
}

.spinner {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 3px solid rgba(176, 122, 82, 0.18);
  border-top-color: var(--accent);
  animation: spin 700ms linear infinite;
  margin-bottom: 1rem;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.8rem;
}

.site-footer {
  padding: 1rem 0 2.5rem;
}

.scroll-top {
  position: fixed;
  right: 3rem;
  bottom: 1.5rem;
  z-index: 30;
  width: 3.2rem;
  height: 3.2rem;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 16px 34px rgba(126, 85, 55, 0.24);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-2px);
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

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

.legal-wrapper {
  margin: 3rem auto 4rem;
  padding: 2.2rem;
}

.legal-wrapper h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  margin: 0 0 1rem;
}

.legal-wrapper h2,
.legal-wrapper h3,
.legal-wrapper h4 {
  margin-top: 2rem;
}

.legal-wrapper ul {
  color: var(--muted);
}

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

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

.legal-wrapper {
  opacity: 1;
  transform: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .page-hero-grid,
  .services-grid,
  .feature-grid,
  .split-panel,
  .testimonial-grid,
  .gallery-grid,
  .contact-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    min-height: 500px;
  }

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

@media (max-width: 760px) {
  .site-header {
    position: sticky;
    backdrop-filter: none;
  }

  .nav {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    display: none;
    width: 100%;
    order: 3;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    margin-top: 0.9rem;
    padding: 0.9rem;
    border-radius: 20px;
    background: rgba(255, 251, 245, 0.96);
    border: 1px solid rgba(38, 33, 28, 0.08);
    box-shadow: 0 18px 38px rgba(87, 62, 42, 0.12);
  }

  .hero-card,
  .glass-card,
  .service-card,
  .testimonial-card,
  .gallery-card,
  .feature-card,
  .contact-card,
  .legal-wrapper,
  .cta-card {
    backdrop-filter: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a,
  .nav-links .button {
    width: 100%;
    justify-content: center;
    margin: 0;
  }

  .nav-links a {
    background: rgba(255, 255, 255, 0.72);
  }

  .nav-links .button {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
    color: #fff;
    box-shadow: 0 14px 26px rgba(126, 85, 55, 0.16);
  }

  .brand-text span {
    font-size: 1.08rem;
  }

  .brand-text small {
    font-size: 0.78rem;
  }

  .hero,
  .page-hero,
  .section {
    padding-top: 2.5rem;
    padding-bottom: 3.5rem;
  }

  .hero-points,
  .field-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-card.primary {
    inset: 1rem 0 6rem 1rem;
  }

  .hero-card.secondary {
    width: 170px;
    height: 200px;
  }

  .floating-note {
    right: 0;
    bottom: 0.5rem;
    max-width: 200px;
  }

  .copy,
  .legal-wrapper,
  .service-content,
  .stats li,
  .feature-card,
  .testimonial-card,
  .contact-card,
  .cta-card {
    padding: 1.3rem;
  }

  .cta-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .scroll-top {
    right: 1rem;
    bottom: 1rem;
    width: 3rem;
    height: 3rem;
  }
}
