:root {
  --canvas: #f4ece7;
  --surface: rgba(255, 250, 246, 0.84);
  --surface-strong: #fff9f4;
  --border: rgba(122, 73, 58, 0.14);
  --text: #2a201d;
  --muted: #6d5850;
  --accent: #8f5a48;
  --accent-strong: #744537;
  --shadow: 0 20px 50px rgba(82, 43, 30, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(170, 110, 89, 0.16), transparent 34%),
    linear-gradient(180deg, #f7efe9 0%, var(--canvas) 100%);
}

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

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 28px auto 36px;
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  min-height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
  background: #3f241d;
}

.hero-banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(32, 17, 13, 0.84), rgba(90, 49, 37, 0.56));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100% - 48px));
  padding: 132px 24px 46px 44px;
  color: #fff8f3;
}


.eyebrow {
  margin: 0 0 6px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 241, 233, 0.76);
}

.hero h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 0.95;
  font-weight: 800;
}

.hero-copy {
  max-width: 420px;
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 241, 233, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-link,
.secondary-link,
.contact-email,
.footer a {
  text-decoration: none;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
}

.primary-link {
  background: #fff4ed;
  color: var(--accent-strong);
}

.secondary-link {
  border: 1px solid rgba(255, 248, 243, 0.36);
  color: #fff8f3;
  background: rgba(255, 248, 243, 0.08);
}

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

.card {
  border-radius: 24px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(87, 50, 37, 0.06);
  backdrop-filter: blur(12px);
}

.card h2 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.1;
}

.card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

.intro-card,
.contact-card {
  background: var(--surface-strong);
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.topic-list {
  display: grid;
  gap: 16px;
}

.topic-list article {
  padding-top: 2px;
}

.topic-list h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.topic-list p {
  font-size: 14px;
}

.contact-email {
  display: inline-block;
  margin-top: 12px;
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-strong);
}

.contact-note {
  margin-top: 10px !important;
  font-size: 13px !important;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding: 0 6px;
  font-size: 14px;
  color: var(--muted);
}

.footer a {
  color: var(--accent-strong);
  font-weight: 700;
}

@media (max-width: 860px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding: 108px 20px 34px;
  }

  .page-shell {
    width: min(100%, calc(100% - 20px));
    margin-top: 10px;
  }

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

@media (max-width: 520px) {
  .hero-actions,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy {
    font-size: 15px;
  }
}


.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.section-heading p {
  font-size: 13px;
  color: var(--muted);
}

.gallery-card {
  grid-column: 1 / -1;
}

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

.phone-shot {
  margin: 0;
  padding: 10px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(122, 73, 58, 0.12);
  box-shadow: 0 10px 24px rgba(87, 50, 37, 0.08);
}

.phone-shot img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  border-radius: 20px;
}

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

@media (max-width: 560px) {
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .phone-gallery {
    grid-template-columns: 1fr;
  }
}


.emphasis-line {
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  color: var(--text);
}


.hero {
  min-height: 360px;
  background: #3f241d;
}

.hero-media-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.75fr 0.62fr 0.62fr;
  gap: 0;
}

.hero-panel {
  position: relative;
  overflow: hidden;
}

.hero-panel-banner {
  background: #3f241d;
}

.hero-banner,
.hero-shot {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-banner {
  object-fit: cover;
  object-position: left center;
}

.hero-shot {
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(32, 17, 13, 0.78), rgba(90, 49, 37, 0.28));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(480px, calc(100% - 48px));
  padding: 138px 24px 42px 44px;
  color: #fff8f3;
}

@media (max-width: 860px) {
  .hero {
    min-height: 520px;
  }

  .hero-media-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1.3fr 0.85fr;
  }

  .hero-panel-shot:last-child {
    display: none;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding: 214px 20px 30px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 500px;
  }

  .hero-media-grid {
    grid-template-rows: 1.15fr 0.85fr;
  }

  .hero-content {
    padding-top: 196px;
  }
}


.hero {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, #6b3f33 0%, #3f241d 100%);
}

.hero-panel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-panel-banner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  padding: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(32, 17, 13, 0.08), rgba(32, 17, 13, 0.42));
}

.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 42%;
  transform: translateY(-14%);
  z-index: 2;
  width: min(560px, calc(100% - 48px));
  padding: 0 24px 0 32px;
  color: #fff8f3;
}

@media (max-width: 860px) {
  .hero {
    min-height: 360px;
  }

  .hero-banner {
    padding: 0;
  }

  .hero-content {
    width: calc(100% - 24px);
    top: 44%;
    transform: translateY(-16%);
    padding: 0 16px 0;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 300px;
    border-radius: 24px;
  }

  .hero-copy {
    font-size: 14px;
  }
}
