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

:root {
  --cream: #FAF7F2;
  --cream-dark: #F0EAE0;
  --wine: #6B2D3E;
  --wine-light: #8B3A50;
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --text: #3A3A3A;
  --text-light: #6E6E6E;
  --white: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.3;
}

h1 { font-size: clamp(1.6rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); color: var(--wine); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1.2rem; color: var(--text); }
p:last-child { margin-bottom: 0; }

a { color: var(--wine); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold); }

/* Navigation */
nav {
  background-color: var(--cream);
  border-bottom: 1px solid var(--gold-light);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 2rem;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

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

.nav-social {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.nav-social a {
  color: var(--wine);
  display: flex;
  align-items: center;
  transition: color 0.3s;
}

.nav-social a:hover { color: var(--gold); }

.nav-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.nav-logo-name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--wine);
  letter-spacing: 0.05em;
  line-height: 1;
}

.nav-logo-sub {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.62rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 400;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--wine); }

.nav-dropdown { position: relative; }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--gold-light);
  border-top: 2px solid var(--wine);
  min-width: 220px;
  padding: 0.5rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.nav-dropdown:hover .nav-dropdown-menu { display: block; }

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.82rem;
  color: var(--text);
  border-bottom: 1px solid var(--cream-dark);
}

.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: var(--cream); color: var(--wine); }

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

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--wine);
  transition: all 0.3s;
}

/* Hero */
.hero {
  min-height: 90vh;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 90vh;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem 4rem 8%;
}

.hero-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 3rem 3rem 1.5rem;
  overflow: hidden;
}

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

.hero-photo {
  width: 100%;
  height: 100%;
  max-height: 75vh;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 16px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--wine);
  margin-bottom: 2rem;
  font-weight: 300;
  font-style: italic;
}

.hero-text {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 1.5rem;
  max-width: 580px;
}

.hero-cta {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background-color: var(--wine);
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color 0.3s, transform 0.2s;
  border: 2px solid var(--wine);
}

.hero-cta:hover {
  background-color: transparent;
  color: var(--wine);
  transform: translateY(-2px);
}

.hero-cta-secondary {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background-color: transparent;
  color: var(--wine);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--wine);
  transition: all 0.3s;
}

.hero-cta-secondary:hover {
  background-color: var(--wine);
  color: var(--white);
}

/* Divider */
.divider {
  text-align: center;
  padding: 0.5rem 0;
  color: var(--gold);
  font-size: 1.5rem;
  letter-spacing: 0.5rem;
}

/* Sections */
section {
  padding: 2.5rem 2rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.section-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0.8rem auto 1.8rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-top: 3px solid var(--wine);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(107,45,62,0.1);
}

.service-card h3 {
  color: var(--wine);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.service-card .card-tag {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}

.service-card a.card-link {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wine);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.3s;
}

.service-card a.card-link:hover { color: var(--gold); }

/* About Preview */
.about-preview {
  background: var(--cream-dark);
}

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

.about-image-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--wine) 0%, var(--wine-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  text-align: center;
  padding: 2rem;
}

.about-photo {
  width: 100%;
  max-height: 280px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 12px;
}

.about-photo-sobre {
  display: block;
  width: 200px;
  height: 200px;
  object-fit: cover;
  object-position: center top;
  margin-bottom: 2.5rem;
  border-radius: 12px;
}

.about-text h2 { margin-bottom: 0.5rem; }
.about-text .about-role {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

/* Full-width text section */
.text-section {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.text-section p { font-size: 1.05rem; color: var(--text-light); }

/* Community / Podcast strip */
.strip {
  background: var(--wine);
  color: var(--white);
  padding: 3rem 2rem;
}

.strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.strip-item h3 {
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.strip-item p { color: rgba(255,255,255,0.85); font-size: 0.95rem; }

.strip-item a {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
}

.strip-item a:hover {
  background: var(--gold);
  color: var(--wine);
}

/* Service page */
.service-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.service-page .back-link {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 2rem;
}

.service-page .back-link:hover { color: var(--wine); }

.service-page h1 {
  color: var(--wine);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.service-page .service-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 2rem;
}

.service-page .section-line { margin-left: 0; }

.service-page h2 {
  font-size: 1.3rem;
  color: var(--wine);
  margin: 2.5rem 0 1rem;
}

.service-page ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.service-page ul li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  color: var(--text-light);
  font-size: 0.95rem;
}

.service-page ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 0.6rem;
}

.service-page .closing-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--wine);
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
  margin: 2rem 0;
}

.cta-block {
  text-align: center;
  padding: 2.5rem;
  background: var(--cream-dark);
  margin-top: 3rem;
}

.cta-block h3 { color: var(--wine); margin-bottom: 1rem; }
.cta-block p { margin-bottom: 1.5rem; color: var(--text-light); }

/* Contact / Agenda */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 { color: var(--wine); margin-bottom: 1rem; }

.contact-page {
  max-width: 980px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4.5rem;
  margin-top: 2rem;
}

.contact-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--wine);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--gold-light);
}

.contact-form label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.4rem;
  margin-top: 1.2rem;
}

.contact-form label:first-of-type { margin-top: 0; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--gold-light);
  border-bottom: 2px solid var(--gold-light);
  background: var(--white);
  padding: 0.75rem 1rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }

.contact-form textarea { min-height: 130px; resize: vertical; }

.contact-form button {
  margin-top: 1.5rem;
  width: 100%;
  padding: 0.9rem 2rem;
  background: var(--wine);
  color: var(--white);
  border: 2px solid var(--wine);
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.contact-form button:hover {
  background: transparent;
  color: var(--wine);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: var(--cream-dark);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--wine);
  font-size: 1.1rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.contact-item .icon {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 0.1rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.testimonial-card {
  background: var(--white);
  padding: 2.5rem 2rem 2rem;
  border-top: 3px solid var(--gold);
  position: relative;
}

.testimonial-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wine);
  margin: 0;
}

/* Footer social icons */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1rem;
}

.footer-social a {
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

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

.footer-social svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

/* Coming soon */
.coming-soon {
  text-align: center;
  padding: 3rem 2rem;
}

.coming-soon h1 { color: var(--wine); font-style: italic; margin-bottom: 1.5rem; }
.coming-soon p { color: var(--text-light); max-width: 620px; margin: 0 auto 1rem; line-height: 1.75; text-align: left; }
.coming-soon p:last-of-type { margin-bottom: 2.5rem; }
.coming-soon .hero-cta { display: inline-block; }

/* Footer */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 2.5rem 2rem;
  font-size: 0.85rem;
}

footer a { color: var(--gold); }
footer p { margin-bottom: 0.2rem; }
footer .footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid var(--gold-light); padding: 1rem 0; gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 0.5rem 2rem; }
  .nav-dropdown-menu { position: static; border: none; box-shadow: none; padding-left: 1rem; }
  .nav-dropdown:hover .nav-dropdown-menu { display: none; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .hamburger { display: flex; }
  .nav-social { display: none; }

  .about-grid,
  .contact-grid,
  .contact-layout,
  .strip-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 3rem 1.5rem; }
  .hero-image-wrap { display: none; }
  .hero-image-mobile { display: block; margin: 1.5rem 0; }
  .hero-cta-secondary { margin-left: 0; }
  .hero-buttons { flex-direction: column; }
  .hero-cta, .hero-cta-secondary { width: 100%; text-align: center; }

  section { padding: 2rem 1.5rem; }
}
