:root {
  --bg: #f7f4f6;
  --surface: #ffffff;
  --surface-soft: #fdf8fa;
  --text: #333333;
  --text-soft: #6c5a63;
  --primary: #d46a87;
  --primary-dark: #bc5673;
  --primary-soft: #f5e8ec;
  --accent: #e8b8c8;
  --border: #edd6de;
  --footer: #2b1b21;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(212, 106, 135, 0.12);
  --shadow-lg: 0 18px 45px rgba(212, 106, 135, 0.18);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1200px;
  --header-h: 96px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--primary-dark);
  text-decoration: none;
}

a:hover {
  color: var(--primary);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: var(--primary);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 1000;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.section-muted {
  background: linear-gradient(180deg, var(--primary-soft) 0%, rgba(245, 232, 236, 0.55) 100%);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-title,
.hero-title,
.cta-title,
.card-title {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.02em;
}

.section-title {
  margin: 0 0 8px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  color: #6a3650;
}

.section-subtitle {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.03rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 246, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 106, 135, 0.12);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(65, 28, 40, 0.06);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex-shrink: 0;
}

.brand-logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}

.brand-text strong {
  font-size: 1.18rem;
  color: #5b3143;
  font-weight: 700;
}

.brand-text small {
  color: var(--text-soft);
  font-size: 0.92rem;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--text);
  font-weight: 600;
  transition: 0.25s ease;
}

.nav-link i {
  color: var(--primary);
}

.nav-link:hover,
.nav-link.is-active {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow);
}

.nav-link:hover i,
.nav-link.is-active i {
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle-bar {
  width: 22px;
  height: 2px;
  background: #6a3650;
  border-radius: 999px;
  transition: 0.2s ease;
}

.hero {
  padding-top: 56px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  padding: 10px 16px;
  background: var(--primary-soft);
  color: #b0506f;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.hero-title {
  margin: 0 0 18px;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.98;
  color: #b75475;
}

.hero-subtitle {
  margin: 0 0 28px;
  max-width: 620px;
  font-size: 1.15rem;
  color: #5f4a54;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid transparent;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-secondary {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: transparent;
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-light,
.btn-white {
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: var(--shadow);
}

.btn-light:hover,
.btn-white:hover {
  transform: translateY(-1px);
}

.btn-block {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-top: 26px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #6a565f;
  font-weight: 600;
}

.trust-item i {
  color: var(--primary);
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.media-item {
  overflow: hidden;
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
  min-height: 270px;
}

.media-item-large {
  grid-column: 1 / -1;
  min-height: 320px;
}

.media-img,
.project-img,
.owner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

.feature,
.card,
.project {
  background: var(--surface);
  border: 1px solid rgba(212, 106, 135, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature {
  padding: 28px;
}

.feature-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.feature-title,
.card-title {
  margin: 0 0 10px;
  font-size: 1.9rem;
  color: #6a3650;
}

.feature-text,
.card-note,
.list,
.muted,
.testimonial-text {
  color: var(--text-soft);
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--primary-dark);
  font-weight: 700;
}

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

.bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(212, 106, 135, 0.1);
  border-radius: 18px;
  color: #5f4a54;
  font-weight: 600;
}

.bullets i {
  color: var(--primary);
  margin-top: 4px;
}

.card {
  padding: 28px;
}

.booking-card {
  background: linear-gradient(180deg, #ffffff 0%, #fff7fa 100%);
}

.mini-steps {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.mini-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #5b4750;
}

.step-num {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
}

.gallery-grid .project {
  overflow: hidden;
  min-height: 360px;
}

.about-grid {
  align-items: stretch;
}

.about-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.owner-figure {
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  background: var(--surface);
}

.list {
  padding-left: 18px;
  margin: 0 0 16px;
}

.list li + li {
  margin-top: 8px;
}

.cta {
  background: linear-gradient(135deg, #cf6784 0%, #b95573 100%);
  color: var(--white);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-title {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  margin: 0 0 8px;
  color: var(--white);
}

.cta-text {
  margin: 0;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.92);
}

.site-footer {
  background: var(--footer);
  color: var(--white);
  padding-top: 56px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr;
  gap: 32px;
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.footer-logo {
  width: 84px;
  height: 84px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-company,
.footer-title {
  color: var(--white);
  font-size: 1.15rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}

.footer-links a,
.site-footer a,
.muted {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links a:hover,
.site-footer a:hover {
  color: #ffc7d8;
}

.footer-bottom {
  margin-top: 32px;
  padding: 22px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

@media (max-width: 1100px) {
  .hero-inner,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-2,
  .footer-inner,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    display: grid;
  }

  .hero-media {
    order: -1;
  }

  .gallery-grid .project {
    min-height: 300px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-h: 84px;
  }

  .brand-logo {
    width: 78px;
    height: 78px;
  }

  .brand-text strong {
    font-size: 1rem;
  }

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

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

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(55, 24, 35, 0.12);
    padding: 12px;
    display: none;
  }

  .nav.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-link {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    padding-top: 32px;
  }

  .section {
    padding: 68px 0;
  }

  .media-item,
  .media-item-large,
  .owner-figure,
  .gallery-grid .project {
    min-height: 240px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--max));
  }

  .header-inner {
    gap: 12px;
  }

  .brand {
    gap: 10px;
    max-width: calc(100% - 64px);
  }

  .brand-logo {
    width: 68px;
    height: 68px;
  }

  .brand-text strong {
    font-size: 0.95rem;
  }

  .brand-text small {
    font-size: 0.76rem;
    white-space: normal;
  }

  .hero-title {
    font-size: clamp(2.5rem, 11vw, 3.5rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn,
  .nav-link {
    font-size: 0.96rem;
  }

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

  .media-item-large {
    grid-column: auto;
  }

  .feature,
  .card {
    padding: 22px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .trust-row {
    gap: 12px;
  }

  .footer-brand {
    align-items: flex-start;
  }
}
	
	
	
	.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.gallery-card {
  overflow: hidden;
  min-height: 320px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.gallery-gap-top {
  margin-top: 20px;
}

.gallery-card .project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

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

  .gallery-card {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .gallery-masonry {
    grid-template-columns: 1fr;
  }

  .gallery-card {
    min-height: 260px;
  }
}
	
	
	
	
	.owner-figure-large {
  min-height: 520px;
}

.about-story-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-title {
  margin-bottom: 14px;
}

.statement-card {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #fff8fb 100%);
}

.statement-text {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.8;
  color: #6a3650;
  font-weight: 600;
}

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

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

  .statement-text {
    font-size: 1.08rem;
  }
}

@media (max-width: 640px) {
  .owner-figure-large {
    min-height: 280px;
  }
}
	
	.contact-grid {
  align-items: stretch;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(212, 106, 135, 0.12);
  border-radius: 18px;
}

.contact-list i {
  width: 20px;
  margin-top: 4px;
  color: var(--primary);
  font-size: 1.05rem;
  flex-shrink: 0;
}

.contact-list strong {
  display: block;
  margin-bottom: 4px;
  color: #5b3143;
}

.contact-list span,
.contact-list a {
  color: var(--text-soft);
}

.contact-actions {
  display: grid;
  gap: 14px;
}

.contact-note-box {
  padding: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fff8fb 100%);
  border: 1px solid rgba(212, 106, 135, 0.12);
  border-radius: 22px;
}

.contact-note-title {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: #6a3650;
}

.map-placeholder {
  min-height: 260px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff7fa 0%, #f5e8ec 100%);
  border: 1px dashed rgba(212, 106, 135, 0.32);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px;
  color: #6a3650;
}

.map-placeholder i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 8px;
}

@media (max-width: 640px) {
  .contact-list li {
    padding: 14px 16px;
  }

  .map-placeholder {
    min-height: 220px;
  }
}
	
	.legal-wrap {
  display: grid;
  gap: 24px;
}

.legal-card {
  padding: 32px;
}

.legal-block + .legal-block {
  margin-top: 18px;
}

.legal-subtitle {
  margin-top: 26px;
}

.legal-card p {
  margin: 0 0 14px;
}

@media (max-width: 640px) {
  .legal-card {
    padding: 22px;
  }
}