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

:root {
  --forest-950: #041a12;
  --forest-900: #08291d;
  --forest-800: #104632;
  --forest-700: #196047;
  --forest-600: #2f795b;

  --gold-700: #946512;
  --gold-600: #b57b18;
  --gold-500: #d3a037;
  --gold-400: #e7c36b;
  --gold-300: #f0d893;
  --gold-200: #f7e7b8;

  --cream-50: #fffdf8;
  --cream-100: #faf6e9;
  --cream-200: #f2e8d1;

  --white: #ffffff;
  --text-dark: #17251e;
  --text: #38473f;
  --text-soft: #6b7771;
  --border: #dde5df;

  --shadow-sm: 0 10px 28px rgba(8, 41, 29, 0.08);
  --shadow-md: 0 18px 48px rgba(8, 41, 29, 0.12);
  --shadow-lg: 0 30px 80px rgba(4, 26, 18, 0.18);

  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 42px;
  --radius-pill: 999px;

  --container: 1180px;
}


/* Reset */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  min-width: 320px;

  font-family:
    "Manrope",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  color: var(--text);
  background: var(--white);
  line-height: 1.7;

  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

figure {
  margin: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}


/* Shared */

.section {
  padding: 108px 20px;
}

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

.section-label,
.eyebrow {
  margin: 0 0 18px;

  color: var(--gold-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.3px;
  text-transform: uppercase;
}

.center-heading {
  max-width: 790px;
  margin: 0 auto 58px;
  text-align: center;
}

.center-heading h2,
.gallery-message-grid h2 {
  margin: 0;

  color: var(--forest-900);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 4vw, 55px);
  line-height: 1.13;
  letter-spacing: -1.4px;
}

.center-heading > p:last-child {
  max-width: 710px;
  margin: 20px auto 0;

  color: var(--text-soft);
  font-size: 17px;
}

.primary-btn,
.secondary-btn {
  min-height: 56px;
  padding: 15px 29px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: var(--radius-pill);

  text-decoration: none;
  font-size: 15px;
  font-weight: 800;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.primary-btn {
  background:
    linear-gradient(
      135deg,
      var(--gold-500),
      var(--gold-700)
    );

  color: var(--white);

  box-shadow: 0 13px 30px rgba(181, 123, 24, 0.27);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(181, 123, 24, 0.36);
}

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.32);

  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.secondary-btn:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.13);
}


/* Navigation */

.top-nav {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(8, 41, 29, 0.09);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow: 0 4px 22px rgba(8, 41, 29, 0.05);
}

.nav-container {
  width: min(calc(100% - 40px), var(--container));
  min-height: 80px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand-mark {
  width: 49px;
  height: 49px;
  flex: 0 0 49px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      var(--gold-500),
      var(--gold-700)
    );

  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;

  box-shadow:
    0 10px 24px rgba(181, 123, 24, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.13;
}

.brand-text strong {
  color: var(--forest-900);
  font-size: 17px;
  font-weight: 800;
}

.brand-text small {
  margin-top: 5px;

  color: var(--text-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 23px;
}

.nav-links a {
  position: relative;

  color: var(--text-dark);
  text-decoration: none;
  font-size: 13px;
  font-weight: 750;
}

.nav-links > a:not(.nav-contact-btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;

  height: 2px;
  background: var(--gold-500);

  transition: right 0.22s ease;
}

.nav-links > a:not(.nav-contact-btn):hover::after,
.nav-links > a.active::after {
  right: 0;
}

.nav-links a.active {
  color: var(--forest-700);
}

.nav-contact-btn {
  padding: 11px 20px;

  border-radius: var(--radius-pill);

  background:
    linear-gradient(
      135deg,
      var(--forest-800),
      var(--forest-600)
    );

  color: var(--white) !important;

  box-shadow: 0 8px 20px rgba(16, 70, 50, 0.21);
}


/* Hero */

.gallery-hero {
  min-height: 830px;
  padding: 105px 20px;

  display: flex;
  align-items: center;

  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(211, 160, 55, 0.24),
      transparent 33%
    ),
    radial-gradient(
      circle at 88% 79%,
      rgba(247, 231, 184, 0.1),
      transparent 29%
    ),
    linear-gradient(
      135deg,
      var(--forest-950),
      var(--forest-900) 48%,
      var(--forest-700)
    );

  color: var(--white);
}

.hero-pattern,
.final-cta-pattern {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.026) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.026) 1px,
      transparent 1px
    );

  background-size: 68px 68px;
}

.hero-container {
  width: min(100%, var(--container));
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;

  position: relative;
  z-index: 2;
}

.hero-content .eyebrow {
  color: var(--gold-400);
}

.hero-content h1 {
  margin: 0;

  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(54px, 6vw, 82px);
  line-height: 1.03;
  letter-spacing: -2.8px;
}

.hero-content h1 span {
  display: block;
  color: var(--gold-200);
}

.hero-description {
  max-width: 650px;
  margin: 28px 0 0;

  color: rgba(255, 255, 255, 0.77);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions,
.final-actions {
  margin-top: 38px;

  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-collage {
  min-height: 610px;
  position: relative;
}

.hero-photo {
  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-xl);

  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.3);
}

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

.hero-photo-main {
  width: 78%;
  height: 560px;

  position: absolute;
  right: 0;
  top: 0;
}

.hero-photo-small {
  width: 45%;
  height: 290px;

  position: absolute;
  left: 0;
  bottom: 0;

  border: 9px solid var(--forest-900);
  border-radius: var(--radius-lg);
}

.hero-gallery-card {
  max-width: 240px;
  padding: 19px 21px;

  position: absolute;
  left: 35px;
  top: 55px;
  z-index: 3;

  border-radius: var(--radius-md);

  background: rgba(255, 255, 255, 0.92);
  color: var(--forest-900);

  box-shadow: var(--shadow-lg);
}

.hero-gallery-card span,
.hero-gallery-card strong {
  display: block;
}

.hero-gallery-card span {
  color: var(--gold-700);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.hero-gallery-card strong {
  margin-top: 7px;
  font-size: 14px;
  line-height: 1.45;
}


/* Intro Strip */

.gallery-intro {
  position: relative;
  z-index: 10;

  margin-top: -42px;
  padding: 0 20px 35px;
}

.intro-grid {
  padding: 27px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  border: 1px solid rgba(8, 41, 29, 0.1);
  border-radius: var(--radius-lg);

  background: var(--white);

  box-shadow: var(--shadow-lg);
}

.intro-grid article {
  padding: 10px 22px;

  display: flex;
  gap: 14px;
}

.intro-grid article + article {
  border-left: 1px solid var(--border);
}

.intro-grid article > span {
  color: var(--gold-600);
  font-size: 11px;
  font-weight: 900;
}

.intro-grid strong {
  color: var(--forest-900);
  font-size: 14px;
}

.intro-grid p {
  margin: 6px 0 0;

  color: var(--text-soft);
  font-size: 11px;
}


/* Gallery Collection */

.gallery-collection-section {
  background:
    linear-gradient(
      180deg,
      var(--cream-50),
      var(--white)
    );
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 290px;
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;

  border-radius: var(--radius-md);

  background: var(--forest-900);

  box-shadow: var(--shadow-md);
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition:
    transform 0.55s ease,
    opacity 0.35s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      transparent 45%,
      rgba(4, 26, 18, 0.78)
    );
}

.gallery-item:hover img {
  transform: scale(1.07);
  opacity: 0.92;
}

.gallery-item figcaption {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 23px;
  z-index: 2;

  color: var(--white);
}

.gallery-item figcaption span,
.gallery-item figcaption strong {
  display: block;
}

.gallery-item figcaption span {
  margin-bottom: 6px;

  color: var(--gold-300);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.gallery-item figcaption strong {
  font-size: 16px;
  line-height: 1.4;
}


/* Gallery Message */

.gallery-message-section {
  background: var(--white);
}

.gallery-message-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.gallery-message-grid > div:first-child > p:last-child {
  color: var(--text-soft);
}

.gallery-message-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 19px;
}

.gallery-message-cards article {
  padding: 28px;

  border: 1px solid rgba(8, 41, 29, 0.1);
  border-radius: var(--radius-md);

  background:
    linear-gradient(
      180deg,
      var(--white),
      var(--cream-50)
    );

  box-shadow: var(--shadow-sm);
}

.gallery-message-cards span {
  color: var(--gold-600);
  font-size: 11px;
  font-weight: 900;
}

.gallery-message-cards h3 {
  margin: 22px 0 9px;

  color: var(--forest-900);
  font-size: 19px;
}

.gallery-message-cards p {
  margin: 0;

  color: var(--text-soft);
  font-size: 14px;
}


/* Final CTA */

.final-cta {
  min-height: 570px;
  padding: 110px 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 15% 50%,
      rgba(211, 160, 55, 0.24),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      var(--forest-950),
      var(--forest-700)
    );

  color: var(--white);
  text-align: center;
}

.final-cta-content {
  width: min(100%, 850px);

  position: relative;
  z-index: 2;
}

.final-cta h2 {
  margin: 0;

  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.07;
  letter-spacing: -2px;
}

.final-cta-content > p:not(.section-label) {
  margin: 23px auto 0;

  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
}

.final-actions {
  justify-content: center;
}


/* Footer */

.footer {
  background: #03150e;
  color: var(--white);
}

.footer-container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  padding: 76px 0;

  display: grid;
  grid-template-columns: 1.3fr 0.72fr 0.9fr 0.72fr;
  gap: 50px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer-brand strong,
.footer-links strong {
  display: block;

  color: var(--white);
  font-size: 16px;
}

.footer-brand p {
  margin: 9px 0 0;

  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.footer-brand small {
  display: block;
  margin-top: 13px;

  color: var(--gold-300);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.64);
  text-decoration: none;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--gold-200);
}

.footer-bottom {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  padding: 23px 0 31px;

  display: flex;
  justify-content: space-between;
  gap: 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.09);

  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}


/* Tablet */

@media (max-width: 1050px) {
  .hero-container,
  .gallery-message-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-collage {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
  }

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

  .intro-grid article:nth-child(3) {
    border-left: 0;
  }

  .intro-grid article:nth-child(n + 3) {
    padding-top: 22px;
    border-top: 1px solid var(--border);
  }

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

  .gallery-item-wide {
    grid-column: span 2;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* Mobile */

@media (max-width: 820px) {
  .nav-container {
    padding: 14px 0;

    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;

    justify-content: flex-start;
    gap: 13px 20px;
  }

  .gallery-hero {
    min-height: auto;
    padding: 90px 18px;
  }

  .hero-collage {
    min-height: 560px;
  }

  .hero-photo-main {
    width: 84%;
    height: 510px;
  }

  .hero-photo-small {
    width: 48%;
    height: 250px;
  }

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

  .intro-grid article + article,
  .intro-grid article:nth-child(3) {
    padding-top: 22px;
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 330px;
  }

  .gallery-item-wide {
    grid-column: auto;
  }

  .gallery-item-tall {
    grid-row: auto;
  }

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

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}


/* Small Mobile */

@media (max-width: 560px) {
  .section {
    padding: 78px 15px;
  }

  .nav-container {
    width: min(calc(100% - 26px), var(--container));
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .brand-text small {
    display: none;
  }

  .nav-links a {
    font-size: 12px;
  }

  .gallery-hero {
    padding: 75px 15px;
  }

  .hero-content h1 {
    font-size: 44px;
    letter-spacing: -1.6px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-actions,
  .final-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .hero-collage {
    min-height: 440px;
  }

  .hero-photo-main {
    width: 87%;
    height: 410px;
  }

  .hero-photo-small {
    width: 52%;
    height: 190px;

    border-width: 6px;
  }

  .hero-gallery-card {
    max-width: 180px;
    left: 10px;
    top: 28px;
    padding: 14px 16px;
  }

  .center-heading h2,
  .gallery-message-grid h2 {
    font-size: 35px;
    letter-spacing: -0.8px;
  }

  .gallery-grid {
    grid-auto-rows: 285px;
  }

  .gallery-item figcaption {
    left: 20px;
    right: 20px;
    bottom: 19px;
  }

  .gallery-message-cards article {
    padding: 24px 21px;
  }

  .final-cta {
    min-height: 530px;
    padding: 85px 16px;
  }

  .final-cta h2 {
    font-size: 41px;
    letter-spacing: -1.2px;
  }

  .footer-container,
  .footer-bottom {
    width: min(calc(100% - 30px), var(--container));
  }

  .footer-container {
    padding: 58px 0;
  }
}