@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --bg: hsl(40, 30%, 97%);
  --fg: hsl(220, 15%, 20%);
  --fg-muted: hsl(220, 10%, 45%);
  --card: hsl(40, 40%, 98%);
  --border: hsl(40, 20%, 90%);
  --primary: hsl(10, 55%, 65%);
  --primary-dark: hsl(10, 55%, 55%);
  --primary-light: hsl(10, 55%, 65%, 0.12);
  --secondary: hsl(175, 30%, 55%);
  --accent: hsl(280, 30%, 70%);
  --muted: hsl(10, 30%, 95%);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --radius: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-xl: 2rem;
  --container: 1100px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.25rem;
  background-color: var(--primary);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px hsl(10, 55%, 65%, 0.3);
}

.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  background-color: var(--primary-light);
  color: var(--primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  text-decoration: none;
}

.btn-ghost:hover {
  background-color: var(--primary);
  color: #fff;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background-color: hsl(40, 30%, 97%, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--fg);
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: hsl(220, 15%, 20%, 0.7);
  transition: color 0.2s;
}

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

nav .btn-nav {
  padding: 0.5rem 1.25rem;
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  transition: background-color 0.2s, color 0.2s;
}

nav .btn-nav:hover {
  background-color: var(--primary);
  color: #fff;
}

.nav-mobile-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-mobile-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-mobile-open .nav-mobile-btn span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-mobile-open .nav-mobile-btn span:nth-child(2) {
  opacity: 0;
}

.nav-mobile-open .nav-mobile-btn span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  padding-top: 10rem;
  padding-bottom: 6rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-blob-1 {
  position: absolute;
  top: 5rem;
  right: -5%;
  width: 40vw;
  height: 40vw;
  background: hsl(10, 55%, 65%, 0.1);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-blob-2 {
  position: absolute;
  bottom: 0;
  left: 2%;
  width: 30vw;
  height: 30vw;
  background: hsl(175, 30%, 55%, 0.1);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
  border-radius: 9999px;
  background-color: hsl(280, 30%, 70%, 0.15);
  border: 1px solid hsl(280, 30%, 70%, 0.25);
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(280, 30%, 40%);
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.hero h1 em {
  color: var(--primary);
  font-style: italic;
}

.hero p {
  font-size: 1.125rem;
  color: hsl(220, 15%, 20%, 0.75);
  margin-bottom: 2.5rem;
  max-width: 30rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-card {
  position: relative;
  width: 100%;
  max-width: 26rem;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  transform: rotate(2deg);
  transition: transform 0.7s ease;
}

.hero-image-card:hover {
  transform: rotate(0deg);
}

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

.hero-image-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.hero-float {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  border: 1px solid hsl(10, 55%, 65%, 0.3);
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.35);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.hero-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.section-philosophy {
  padding: 6rem 0;
  background-color: var(--card);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--fg);
  line-height: 1.2;
}

.section-lead {
  font-size: 1.1rem;
  color: hsl(220, 15%, 20%, 0.7);
  line-height: 1.7;
  font-weight: 300;
}

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

.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-16 { margin-bottom: 4rem; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  background-color: hsl(40, 30%, 97%, 0.6);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.6);
}

.card-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--primary);
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.card p {
  color: hsl(220, 15%, 20%, 0.7);
  line-height: 1.7;
  font-size: 0.95rem;
}

.section-gallery {
  padding: 6rem 0;
  overflow: hidden;
}

.gallery-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.gallery-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery-col.offset {
  padding-top: 3rem;
}

.gallery-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  object-fit: cover;
}

.gallery-img.tall {
  aspect-ratio: 4/5;
}

.gallery-img.square {
  aspect-ratio: 1/1;
}

.gallery-text h2 {
  margin-bottom: 1.5rem;
}

.gallery-text p {
  color: hsl(220, 15%, 20%, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: hsl(220, 15%, 20%, 0.8);
  font-size: 0.95rem;
}

.feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary);
  margin-top: 0.6rem;
  flex-shrink: 0;
}

.section-form {
  padding: 6rem 0;
  background-color: var(--card);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.section-form::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw;
  height: 60vw;
  background: hsl(280, 30%, 70%, 0.1);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.form-card {
  position: relative;
  z-index: 1;
  max-width: 28rem;
  margin: 0 auto;
  background: hsl(40, 40%, 98%, 0.8);
  backdrop-filter: blur(8px);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 20px 40px rgba(0,0,0,0.07);
}

.form-card h3 {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 0.75rem;
}

.form-card .form-desc {
  text-align: center;
  color: hsl(220, 15%, 20%, 0.7);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.form-field {
  margin-bottom: 1.25rem;
}

.form-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(220, 15%, 20%, 0.8);
  margin-bottom: 0.4rem;
}

.form-field input {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: rgba(255,255,255,0.55);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--fg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-field input::placeholder {
  color: var(--fg-muted);
  opacity: 0.7;
}

.form-field input:focus {
  border-color: hsl(10, 55%, 65%, 0.5);
  box-shadow: 0 0 0 3px hsl(10, 55%, 65%, 0.1);
}

.field-error {
  display: none;
  font-size: 0.8rem;
  color: hsl(0, 70%, 55%);
  margin-top: 0.35rem;
}

.field-error.visible {
  display: block;
}

.form-submit {
  width: 100%;
  padding: 0.875rem;
  margin-top: 0.5rem;
  border-radius: var(--radius);
  font-size: 1rem;
}

.form-note {
  font-size: 0.75rem;
  text-align: center;
  color: var(--fg-muted);
  margin-top: 1rem;
}

.form-note a {
  text-decoration: underline;
  color: var(--primary);
  transition: color 0.2s;
}

.form-note a:hover {
  color: var(--primary-dark);
}

footer {
  background-color: var(--card);
  border-top: 1px solid var(--border);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 400;
}

.footer-brand p {
  font-size: 0.875rem;
  color: hsl(220, 15%, 20%, 0.7);
  line-height: 1.7;
  max-width: 22rem;
  margin-bottom: 1.5rem;
}

.footer-legal {
  font-size: 0.75rem;
  color: var(--fg-muted);
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: right;
}

.footer-links a {
  font-size: 0.875rem;
  color: hsl(220, 15%, 20%, 0.8);
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: var(--card);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.cookie-banner.hidden {
  transform: translateY(100%);
  pointer-events: none;
}

.cookie-text {
  font-size: 0.875rem;
  color: hsl(220, 15%, 20%, 0.8);
  line-height: 1.6;
}

.cookie-text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-text a:hover {
  color: var(--primary-dark);
}

.cookie-actions {
  flex-shrink: 0;
}

.cookie-accept {
  padding: 0.5rem 1.5rem;
  background-color: var(--primary);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  white-space: nowrap;
}

.cookie-accept:hover {
  background-color: var(--primary-dark);
}

.page-legal {
  padding-top: 9rem;
  padding-bottom: 6rem;
}

.legal-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 2rem;
}

.legal-content p {
  color: hsl(220, 15%, 20%, 0.75);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 0.975rem;
}

.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--fg);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  list-style: disc;
  color: hsl(220, 15%, 20%, 0.75);
  font-size: 0.975rem;
  line-height: 1.8;
}

.legal-content ul li {
  margin-bottom: 0.25rem;
}

.page-success {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--bg);
  position: relative;
  overflow: hidden;
}

.page-success::before {
  content: '';
  position: absolute;
  top: 25%;
  left: 20%;
  width: 24rem;
  height: 24rem;
  background: hsl(10, 55%, 65%, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.page-success::after {
  content: '';
  position: absolute;
  bottom: 30%;
  right: 20%;
  width: 28rem;
  height: 28rem;
  background: hsl(175, 30%, 55%, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.success-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 1.5rem 4rem;
  position: relative;
  z-index: 1;
}

.success-card {
  max-width: 36rem;
  width: 100%;
  background: hsl(40, 40%, 98%, 0.85);
  backdrop-filter: blur(8px);
  padding: 3.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  text-align: center;
}

.success-icon {
  width: 5rem;
  height: 5rem;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.success-icon svg {
  width: 2.25rem;
  height: 2.25rem;
}

.success-card h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.success-card p {
  color: hsl(220, 15%, 20%, 0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

.animate-in {
  animation: slideUp 0.7s ease forwards;
}

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

  .hero {
    padding-top: 8rem;
    min-height: auto;
    padding-bottom: 4rem;
  }

  .hero-image-wrap {
    display: none;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .gallery-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .gallery-grid .gallery-col.offset {
    padding-top: 0;
  }

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

  .footer-links {
    text-align: left;
  }

  nav .nav-links {
    display: none;
  }

  .nav-mobile-btn {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background-color: var(--bg);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  font-weight: 500;
  color: hsl(220, 15%, 20%, 0.8);
  transition: color 0.2s;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

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

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cookie-accept {
    width: 100%;
    text-align: center;
  }

  .success-card {
    padding: 2rem 1.5rem;
  }

  .form-card {
    padding: 2rem 1.5rem;
  }
}
