

:root {
  --bg: #edebe0;
  --bg-soft: #e6e4d7;
  --ink: #1c1b16;
  --ink-soft: #4c4a41;
  --highlight: #e2dfce;
  --white: #ffffff;
  --radius-card: 18px;
  --font-serif: "Instrument Serif", Georgia, serif;
  --font-sans: "Inter", "Helvetica Neue", Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

em {
  font-style: italic;
}

.container {
  width: min(1160px, 100% - 48px);
  margin-inline: auto;
}


.highlight {
  background: var(--highlight);
  padding: 0 0.12em;
  border-radius: 4px;
}



.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: var(--bg);
}

.menu-open .site-header {
  background: transparent;
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 32px;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  color: var(--ink);
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.55;
}

.logo {
  text-align: center;
  line-height: 1.05;
  display: flex;
  flex-direction: column;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.7;
}

.logo-top {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
}

.logo-bottom {
  font-size: 12px;
  font-weight: 600;
}


.menu-toggle {
  justify-self: end;
  background: none;
  border: none;
  cursor: pointer;
  width: 34px;
  height: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.35s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(4.75px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  transform: translateY(-4.75px) rotate(-45deg);
}



.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--bg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  overflow-y: auto;
}

.menu-open .menu-overlay {
  opacity: 1;
  visibility: visible;
}

.menu-open {
  overflow: hidden;
}

.menu-inner {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 120px 32px 40px;
  text-align: center;
}

.menu-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.menu-link {
  font-family: var(--font-serif);
  font-size: clamp(44px, 7vw, 72px);
  line-height: 1.12;
  transition: opacity 0.3s ease, font-style 0.3s ease;
}

.menu-link:hover {
  font-style: italic;
  opacity: 0.65;
}

.menu-footer {
  margin-top: 48px;
  font-size: 15px;
  color: var(--ink-soft);
}

.menu-footer a {
  transition: opacity 0.3s ease;
}

.menu-footer a:hover {
  opacity: 0.6;
}



.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 190px;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 64px;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.08;
  margin-bottom: 44px;
}


.btn-primary {
  display: inline-block;
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  padding: 15px 28px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(28, 27, 22, 0.12);
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-primary:hover {
  background: var(--ink);
  color: var(--bg);
}

.btn-outline {
  display: inline-block;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 12px;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--bg);
}

.btn-light {
  display: inline-block;
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  padding: 15px 28px;
  border-radius: 12px;
  transition: background 0.3s ease;
}

.btn-light:hover {
  background: var(--white);
}

.btn-dark {
  display: inline-block;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  padding: 18px 44px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.btn-dark:hover {
  opacity: 0.85;
}


.hero-strip {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 16px;
  width: calc(100% - 32px);
  align-self: center;
}

.strip-card {
  flex: 1 1 0;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  overflow: hidden;
  background: var(--bg-soft);
}

.card-1 { height: 430px; }
.card-2 { height: 495px; }
.card-3 { height: 560px; }
.card-4 { height: 495px; }
.card-5 { height: 430px; }



section {
  padding: 130px 0;
  scroll-margin-top: 90px;
}

.hero {
  padding-bottom: 0;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.1;
  margin-bottom: 32px;
}



.manifesto {
  text-align: center;
  background: var(--bg-soft);
}

.manifesto-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.1;
  margin-bottom: 36px;
}

.manifesto .highlight {
  background: var(--bg);
}

.manifesto-text {
  max-width: 660px;
  margin-inline: auto;
  color: var(--ink-soft);
  font-size: 18px;
}



.bento .section-title {
  margin-bottom: 56px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 20px;
}

.bento-cell {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--bg-soft);
}

.bento-a { grid-column: span 2; grid-row: span 2; }
.bento-b { grid-column: span 1; grid-row: span 2; }
.bento-c { grid-column: span 1; grid-row: span 1; }
.bento-d { grid-column: span 1; grid-row: span 1; }
.bento-e { grid-column: span 2; grid-row: span 1; }
.bento-f { grid-column: span 2; grid-row: span 1; }
.bento-g { grid-column: span 1; grid-row: span 1; }
.bento-h { grid-column: span 1; grid-row: span 1; }
.bento-i { grid-column: span 1; grid-row: span 1; }
.bento-j { grid-column: span 1; grid-row: span 1; }

.bento-cell img {
  transition: transform 0.5s ease;
}

.bento-cell:hover img {
  transform: scale(1.04);
}

.bento-text,
.bento-stat,
.bento-dark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 32px;
}

.bento-big {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1.12;
}

.bento-num {
  font-family: var(--font-serif);
  font-size: clamp(48px, 5vw, 68px);
  line-height: 1;
}

.bento-label {
  font-size: 16px;
  color: var(--ink-soft);
}

.bento-quote {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.15;
}

.bento-dark .bento-label {
  color: #b9b6a6;
}

.bento-dark {
  background: var(--ink);
  color: var(--bg);
}



.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.about-content p {
  color: var(--ink-soft);
  font-size: 17px;
  margin-bottom: 20px;
  max-width: 48ch;
}

.about-stats {
  display: flex;
  gap: 56px;
  margin-top: 44px;
}

.about-stats li {
  display: flex;
  flex-direction: column;
}

.about-stats strong {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 44px;
  line-height: 1.1;
}

.about-stats span {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 4px;
}



.services {
  background: var(--bg-soft);
}

.services .section-title {
  margin-bottom: 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card figure {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  margin-bottom: 22px;
}

.service-card img {
  transition: transform 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.04);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 30px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  color: var(--ink-soft);
}



.gallery .section-title {
  margin-bottom: 64px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: min(1320px, 100% - 48px);
  margin-inline: auto;
}

.gallery-grid figure {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.gallery-grid figure:nth-child(2),
.gallery-grid figure:nth-child(5) {
  margin-top: 32px;
}

.gallery-grid img {
  transition: transform 0.5s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}



.packages {
  background: var(--bg-soft);
}

.packages .section-title {
  margin-bottom: 64px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.package-card {
  background: var(--bg);
  border-radius: var(--radius-card);
  padding: 48px 36px;
  text-align: center;
}

.package-card.featured {
  background: var(--ink);
  color: var(--bg);
}

.package-card h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 34px;
  margin-bottom: 10px;
}

.package-price {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  margin-bottom: 32px;
}

.package-card ul {
  margin-bottom: 36px;
}

.package-card li {
  font-size: 15px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(28, 27, 22, 0.08);
  color: var(--ink-soft);
}

.package-card.featured li {
  border-color: rgba(237, 235, 224, 0.14);
  color: #cfccbd;
}

.package-card li:last-child {
  border-bottom: none;
}



.contact {
  padding: 160px 0;
}

.contact-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(44px, 6.4vw, 88px);
  line-height: 1.08;
  text-align: center;
  margin-bottom: 72px;
}

.contact-form {
  max-width: 820px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-field label {
  font-family: var(--font-serif);
  font-size: 22px;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 17px 20px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #a3a091;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(28, 27, 22, 0.08);
}

.contact .btn-dark {
  align-self: center;
  margin-top: 12px;
}



.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.footer-nav {
  display: flex;
  gap: 26px;
  font-size: 15px;
}

.footer-nav a {
  transition: opacity 0.3s ease;
}

.footer-nav a:hover {
  opacity: 0.6;
}

.footer-contact {
  text-align: right;
  font-size: 15px;
  color: #b9b6a6;
}

.footer-contact a {
  transition: opacity 0.3s ease;
}

.footer-contact a:hover {
  opacity: 0.7;
}

.footer-bottom {
  border-top: 1px solid rgba(237, 235, 224, 0.14);
  padding-top: 24px;
  font-size: 13px;
  color: #8f8c7d;
}



@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 24px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-inline: auto;
  }

  .about-grid {
    gap: 48px;
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .bento-a { grid-column: span 2; grid-row: span 2; }
  .bento-b,
  .bento-c,
  .bento-d { grid-column: span 1; grid-row: span 1; }
  .bento-e,
  .bento-f { grid-column: span 2; grid-row: span 1; }
  .bento-g,
  .bento-h,
  .bento-i,
  .bento-j { grid-column: span 1; grid-row: span 1; }
  .bento-b { grid-row: span 1; }
}

@media (max-width: 768px) {
  section {
    padding: 64px 0;
  }

  .nav {
    padding: 16px 20px;
  }

  .nav-links {
    display: none;
  }

  .logo {
    grid-column: 2;
  }

  
  .hero-title {
    font-size: clamp(30px, 8.4vw, 38px);
    margin-bottom: 28px;
  }

  .section-title,
  .manifesto-title,
  .contact-title {
    font-size: clamp(28px, 7.6vw, 36px);
  }

  .manifesto-text {
    font-size: 15px;
  }

  .btn-primary,
  .btn-outline,
  .btn-light,
  .btn-dark {
    font-size: 14px;
    padding: 12px 22px;
  }

  .bento-big {
    font-size: 26px;
  }

  .bento-num {
    font-size: 40px;
  }

  .bento-quote {
    font-size: 22px;
  }

  .bento-label {
    font-size: 13px;
  }

  .about-content p {
    font-size: 15px;
  }

  .about-stats strong {
    font-size: 32px;
  }

  .about-stats span {
    font-size: 12px;
  }

  .service-card h3 {
    font-size: 24px;
  }

  .service-card p {
    font-size: 14px;
  }

  .package-card {
    padding: 36px 28px;
  }

  .package-card h3 {
    font-size: 26px;
  }

  .package-price {
    font-size: 20px;
  }

  .package-card li {
    font-size: 14px;
  }

  .contact {
    padding: 96px 0;
  }

  .contact-title {
    margin-bottom: 44px;
  }

  .form-field label {
    font-size: 18px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 15px;
    padding: 14px 16px;
  }

  
  .hero {
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 40px;
  }

  .hero-content {
    margin-bottom: 36px;
  }

  
  .hero-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: stretch;
    width: calc(100% - 40px);
  }

  .strip-card {
    border-radius: var(--radius-card);
  }

  .card-1 { height: 180px; margin-top: 40px; }
  .card-2 { height: 220px; }
  .card-3 { height: 220px; }
  .card-4 { height: 180px; margin-top: 40px; margin-bottom: -40px; }
  .card-5 { height: 160px; grid-column: span 2; margin-top: 50px; }

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

  .about-stats {
    gap: 36px;
  }

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

  .gallery-grid figure:nth-child(2),
  .gallery-grid figure:nth-child(5) {
    margin-top: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-contact {
    text-align: center;
  }
}

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

  .about-stats {
    flex-wrap: wrap;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .bento-a,
  .bento-b,
  .bento-c,
  .bento-d,
  .bento-e,
  .bento-f,
  .bento-g,
  .bento-h,
  .bento-i,
  .bento-j {
    grid-column: span 1;
    grid-row: span 1;
  }

  .bento-a { grid-row: span 2; }
}
