:root {
  --ink: #141414;
  --ink-soft: #2d2a26;
  --paper: #f7f4ef;
  --paper-strong: #fffdf8;
  --line: rgba(20, 20, 20, 0.12);
  --gold: #c6a45c;
  --gold-bright: #e0c781;
  --sage: #647064;
  --brick: #9f6144;
  --shadow: 0 24px 70px rgba(15, 12, 8, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 5vw, 64px);
  color: #fff;
  background: linear-gradient(180deg, rgba(12, 11, 10, 0.78), rgba(12, 11, 10, 0));
  transition: background 0.25s ease, box-shadow 0.25s ease, min-height 0.25s ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  min-height: 68px;
  background: rgba(15, 14, 13, 0.94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  padding: 0;
  border: 1px solid rgba(224, 199, 129, 0.5);
  border-radius: 50%;
  background: #070707;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.22s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.header-cta {
  min-height: 42px;
  padding: 0 18px;
  color: #15120d;
  background: var(--gold-bright);
}

.button {
  min-width: 170px;
  padding: 0 24px;
}

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

.button-primary {
  color: #18120b;
  background: var(--gold-bright);
  box-shadow: 0 12px 26px rgba(198, 164, 92, 0.28);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.section .button-secondary,
.contact-section .button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--paper-strong);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: #fff;
  transition: transform 0.22s ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.site-header.menu-active .menu-toggle span:first-child {
  transform: rotate(45deg);
}

.site-header.menu-active .menu-toggle span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(780px, calc(100svh - 34px));
  color: #fff;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/background/IMG_0589.JPEG");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 8, 7, 0.88) 0%, rgba(9, 8, 7, 0.55) 48%, rgba(9, 8, 7, 0.18) 100%),
    linear-gradient(180deg, rgba(9, 8, 7, 0.16) 0%, rgba(9, 8, 7, 0.72) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding: 150px 0 84px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  line-height: 1;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(3.2rem, 8vw, 7.6rem);
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  color: #fff;
  background: #151413;
}

.quick-info div {
  padding: clamp(22px, 4vw, 34px) clamp(20px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(198, 164, 92, 0.12), rgba(255, 255, 255, 0)),
    #1e1c1a;
}

.quick-info span,
.contact-card span,
.service-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.quick-info strong {
  display: block;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.section {
  padding: clamp(72px, 10vw, 120px) clamp(18px, 5vw, 64px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.64fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto clamp(34px, 5vw, 56px);
}

.section-heading.compact {
  display: block;
  margin-bottom: 30px;
}

.section-heading > .eyebrow {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
}

.section-heading > h2,
.feature-copy h2,
.contact-copy h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(2.1rem, 4.6vw, 4.5rem);
}

.section-heading > h2 {
  grid-column: 1;
  grid-row: 2;
}

.section-heading > p:not(.eyebrow),
.feature-copy p,
.contact-copy p {
  margin-bottom: 0;
  color: rgba(20, 20, 20, 0.68);
  font-size: 1.03rem;
}

.section-heading > p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
}

.plans-section {
  color: #fff;
  background:
    radial-gradient(circle at 50% 12%, rgba(224, 199, 129, 0.14), transparent 32%),
    linear-gradient(180deg, #111016 0%, #171520 100%);
}

.plans-heading {
  max-width: 880px;
  margin: 0 auto clamp(34px, 5vw, 56px);
  text-align: center;
}

.plans-heading::before {
  display: block;
  width: 34px;
  height: 4px;
  margin: 0 auto 16px;
  border-radius: 999px;
  content: "";
  background: var(--gold-bright);
}

.plans-heading h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(2.1rem, 4.2vw, 4rem);
  line-height: 1;
}

.plans-heading p:not(.eyebrow) {
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.04rem;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1280px;
  margin: 0 auto;
}

.plan-card {
  display: flex;
  flex-direction: column;
  min-height: 296px;
  padding: 24px;
  border: 1px solid rgba(224, 199, 129, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(224, 199, 129, 0.035)),
    #1c1a29;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.plan-card.plan-featured {
  border-color: rgba(224, 199, 129, 0.45);
  box-shadow: 0 0 40px rgba(224, 199, 129, 0.18), 0 18px 42px rgba(0, 0, 0, 0.24);
}

.plan-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--gold-bright);
  background: rgba(224, 199, 129, 0.12);
}

.plan-icon svg,
.social-link svg,
.footer-social svg,
.floating-agenda svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.plan-card h3 {
  min-height: 54px;
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.25;
}

.plan-card p {
  min-height: 70px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.62);
}

.plan-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.plan-footer small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-footer strong {
  color: var(--gold-bright);
  font-size: 1.26rem;
}

.plan-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 18px;
  padding: 0 18px;
  border: 1px solid rgba(224, 199, 129, 0.35);
  border-radius: 4px;
  color: #18120b;
  background: var(--gold-bright);
  font-weight: 900;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.plan-button:hover,
.plan-button:focus-visible {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 14px 40px rgba(41, 31, 20, 0.08);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.service-card div {
  min-height: 236px;
  padding: 22px;
}

.service-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.24rem;
  line-height: 1.15;
}

.service-card p {
  margin-bottom: 0;
  color: rgba(20, 20, 20, 0.68);
}

.service-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  max-width: 1180px;
  margin: 22px auto 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
}

.service-menu span,
.service-menu strong,
.service-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 4px;
  font-size: 0.92rem;
}

.service-menu span {
  color: rgba(20, 20, 20, 0.58);
  font-weight: 900;
  text-transform: uppercase;
}

.service-menu strong {
  border: 1px solid rgba(20, 20, 20, 0.1);
  color: var(--ink-soft);
  background: #fff;
}

.service-menu a {
  margin-left: auto;
  color: #18120b;
  background: var(--gold-bright);
  font-weight: 900;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(72px, 9vw, 118px) clamp(18px, 6vw, 86px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(159, 97, 68, 0.16), rgba(100, 112, 100, 0.18)),
    #171514;
}

.feature-copy {
  max-width: 560px;
}

.feature-copy h2,
.feature-copy p {
  color: #fff;
}

.feature-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.feature-image {
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  content: "";
  background: var(--gold-bright);
}

.check-list li::after {
  position: absolute;
  left: 6px;
  top: 0.39em;
  width: 6px;
  height: 10px;
  border: solid #171514;
  border-width: 0 2px 2px 0;
  content: "";
  transform: rotate(45deg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 150px;
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(41, 31, 20, 0.1);
}

.gallery-grid img:nth-child(1) {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-grid img:nth-child(2) {
  grid-column: span 3;
  grid-row: span 3;
}

.gallery-grid img:nth-child(3) {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-grid img:nth-child(4) {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-grid img:nth-child(5) {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-grid img:nth-child(6) {
  grid-column: span 4;
  grid-row: span 2;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  padding: clamp(72px, 9vw, 112px) clamp(18px, 6vw, 86px);
  background:
    linear-gradient(130deg, rgba(198, 164, 92, 0.13), rgba(100, 112, 100, 0.18)),
    var(--paper-strong);
}

.contact-copy {
  max-width: 700px;
}

.contact-copy p {
  max-width: 560px;
  margin: 18px 0 28px;
}

.contact-card {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(41, 31, 20, 0.1);
}

.contact-card strong {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 1.08rem;
  font-style: normal;
}

.contact-card a {
  color: inherit;
  overflow-wrap: anywhere;
}

.social-link,
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-link {
  color: var(--ink);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.72);
  background: #121110;
}

.site-footer span:first-child {
  color: #fff;
  font-weight: 900;
}

.footer-social {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.floating-agenda {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 30px);
  z-index: 35;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #18120b;
  background: var(--gold-bright);
  box-shadow: 0 18px 42px rgba(20, 14, 6, 0.3);
  font-size: 0.96rem;
  font-weight: 900;
  transition: transform 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
}

.floating-agenda:hover,
.floating-agenda:focus-visible {
  filter: brightness(1.04);
  transform: translateY(-2px);
}

body.menu-open .floating-agenda {
  opacity: 0;
  pointer-events: none;
}

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

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

  .section-heading,
  .feature-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .feature-copy {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    padding-inline: 16px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .header-cta,
  .main-nav {
    display: none;
  }

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

  .site-header.menu-active .main-nav {
    position: fixed;
    inset: 68px 0 auto;
    display: grid;
    gap: 0;
    padding: 10px 16px 20px;
    background: rgba(15, 14, 13, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-header.menu-active .main-nav a {
    padding: 17px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero {
    min-height: 720px;
  }

  .hero-media {
    background-position: 47% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(9, 8, 7, 0.2) 0%, rgba(9, 8, 7, 0.86) 66%, rgba(9, 8, 7, 0.96) 100%),
      linear-gradient(90deg, rgba(9, 8, 7, 0.72), rgba(9, 8, 7, 0.18));
  }

  .hero-inner {
    width: calc(100% - 32px);
    margin: 0 16px;
    padding: 118px 0 50px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .quick-info,
  .service-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .quick-info div {
    padding: 22px 18px;
  }

  .section {
    padding-block: 64px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading > .eyebrow,
  .section-heading > h2,
  .section-heading > p:not(.eyebrow) {
    grid-column: auto;
    grid-row: auto;
  }

  .service-card {
    display: grid;
    grid-template-columns: minmax(120px, 0.42fr) minmax(0, 0.58fr);
  }

  .service-card img {
    height: 100%;
    aspect-ratio: auto;
  }

  .service-card div {
    min-height: 0;
    padding: 18px;
  }

  .service-card h3 {
    font-size: 1.08rem;
  }

  .service-card p {
    font-size: 0.94rem;
  }

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

  .plan-card h3,
  .plan-card p {
    min-height: 0;
  }

  .service-menu {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-menu a {
    justify-content: center;
    margin-left: 0;
  }

  .feature-image,
  .feature-image img {
    min-height: 320px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 190px;
  }

  .gallery-grid img:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-grid img:first-child {
    grid-column: span 2;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .floating-agenda {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 0 16px;
    font-size: 0.9rem;
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4.2rem);
  }

  .section-heading h2,
  .feature-copy h2,
  .contact-copy h2 {
    font-size: 2rem;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card img {
    aspect-ratio: 16 / 11;
  }

  .gallery-grid {
    grid-auto-rows: 160px;
    gap: 10px;
  }
}
