/* ============================================
   Two Tulips Wedding Consulting
   Soft, elegant, refined design
   ============================================ */

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

:root {
  --cream: #F9F6F1;
  --warm-white: #FDFBF8;
  --sage: #7A8B78;
  --deep-sage: #5A6B58;
  --taupe: #9A7B5A;
  --soft-taupe: #C9B8A3;
  --charcoal: #2A2A2A;
  --muted: #6F6A63;
  --border: #E6DFD4;
  --card-bg: #FFFFFF;
  --shadow: 0 4px 24px rgba(62, 74, 61, 0.06);
  --shadow-hover: 0 8px 32px rgba(62, 74, 61, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  font-size: 16.5px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  color: var(--deep-sage);
  line-height: 1.25;
}

h1 { font-size: clamp(2.5rem, 5.2vw, 3.6rem); margin-bottom: 1.1rem; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.7rem; font-weight: 600; }

p { margin-bottom: 1.1rem; color: var(--charcoal); }

a {
  color: var(--deep-sage);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--taupe); }

/* Layout */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
header {
  background: rgba(253, 251, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1.1rem 0;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--deep-sage);
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.logo svg {
  width: 16px;
  height: 26px;
  flex-shrink: 0;
}

.logo-icon {
  height: 44px;
  width: auto;
  flex-shrink: 0;
}

.logo span {
  font-weight: 400;
  color: var(--taupe);
  font-style: italic;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.8rem;
}

nav a {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

nav a:hover,
nav a.active {
  color: var(--deep-sage);
}

/* Hero */
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 500;
  margin-bottom: 1.1rem;
}
.hero {
  background: linear-gradient(180deg, #FDFBF8 0%, #F3EEE6 100%);
  padding: 6.2rem 0 5.4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(156, 123, 90, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  max-width: 820px;
  margin: 0 auto 1.3rem;
}

.hero .subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 2.4rem;
  font-weight: 300;
  line-height: 1.65;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.92rem 2rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;

  border-radius: 2px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--deep-sage);
  color: white;
  box-shadow: 0 2px 12px rgba(62, 74, 61, 0.2);
}
.btn-primary:hover {
  background: var(--sage);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(62, 74, 61, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--deep-sage);
  border: 1.5px solid var(--deep-sage);
  margin-left: 0.9rem;
}
.btn-secondary:hover {
  background: var(--deep-sage);
  color: white;
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-light {
  background: var(--warm-white);
}

.section-alt {
  background: #F4F0E9;
}

.section-title {
  text-align: center;
  margin-bottom: 0.7rem;
}
.section-title::after {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--taupe);
  margin: 0.85rem auto 0;
}

.section-intro {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 3.2rem;
  color: var(--muted);
  font-weight: 300;
  font-size: 1.05rem;
}

/* Cards / Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.6rem;
}

.step {
  background: var(--card-bg);
  padding: 2.1rem 1.7rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--deep-sage);
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.1rem;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

.step p {
  font-size: 0.93rem;
  color: var(--muted);
  margin-bottom: 0;
  font-weight: 300;
  line-height: 1.6;
}

/* Packages */
.packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.7rem;
}

.package {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2.3rem 1.9rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.package:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.package.featured {
  border: 2px solid var(--deep-sage);
}

.package.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--deep-sage);
  color: white;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.28rem 1rem;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.package h3 {
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  color: var(--taupe);
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.price span {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 400;
  font-family: 'Outfit', sans-serif;
}

.package-desc {
  font-size: 0.93rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-weight: 300;
  line-height: 1.55;
}

.package ul {
  list-style: none;
  margin-bottom: 1.9rem;
  flex-grow: 1;
}

.package li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.93rem;
  color: var(--charcoal);
  font-weight: 300;
}

.package li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 600;
}

.package .btn {
  width: 100%;
}

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

.testimonial {
  background: var(--card-bg);
  padding: 2rem 1.8rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.testimonial p {
  font-size: 0.98rem;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
  line-height: 1.65;
  font-weight: 300;
}

.testimonial .author {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--deep-sage);
  font-style: normal;
}

.testimonial .stars {
  color: var(--taupe);
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
  letter-spacing: 1px;
}

/* About */
.about-content {
  max-width: 680px;
  margin: 0 auto;
}

.about-content p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
}

.highlight-box {
  background: var(--card-bg);
  border-left: 4px solid var(--sage);
  padding: 1.6rem 1.9rem;
  margin: 2.2rem 0;
  border-radius: 0 10px 10px 0;
  box-shadow: var(--shadow);
}

.highlight-box h3 {
  margin-bottom: 0.5rem;
}

.highlight-box p {
  margin-bottom: 0;
  font-size: 0.98rem;
}

/* Contact form */
.contact-form {
  max-width: 540px;
  margin: 0 auto;
  background: var(--card-bg);
  padding: 2.6rem 2.2rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
  font-weight: 400;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 7px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.98rem;
  background: var(--warm-white);
  color: var(--charcoal);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--sage);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Footer */
footer {
  background: #3d4a3c;
  color: #E8E2D9;
  padding: 3.2rem 0 2.2rem;
  text-align: center;
}

footer a {
  color: #E8E2D9;
  font-weight: 300;
}
footer a:hover {
  color: white;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.6rem;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.footer-note {
  font-size: 0.88rem;
  opacity: 0.8;
  font-weight: 300;
}

/* Instagram / social */
.ig-cta {
  text-align: center;
  padding: 2.4rem;
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-top: 1rem;
}

.ig-cta a {
  font-weight: 500;
  font-size: 1.05rem;
}

/* Sample document preview */
.doc-sample {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 1.9rem 2.1rem;
  margin-bottom: 1.6rem;
}

.doc-sample .doc-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--taupe);
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.doc-sample h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  color: var(--deep-sage);
  font-weight: 600;
  margin-bottom: 1rem;
}

.doc-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  padding: 0.6rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.92rem;
}

.doc-row:first-of-type { border-top: none; }

.doc-row .doc-time {
  color: var(--muted);
  font-weight: 500;
}

.doc-playbook-item {
  padding: 0.9rem 0;
  border-top: 1px solid var(--border);
}

.doc-playbook-item:first-of-type { border-top: none; }

.doc-playbook-item .if {
  font-weight: 600;
  color: var(--deep-sage);
  font-size: 0.92rem;
}

.doc-playbook-item .then {
  font-size: 0.92rem;
  color: var(--charcoal);
  margin-top: 0.3rem;
}

.doc-watermark {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
  margin-top: -0.6rem;
  margin-bottom: 2rem;
}

.work-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-top: 2rem;
  align-items: stretch;
}
.work-row img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  filter: saturate(0.92);
  transition: filter 0.35s ease, transform 0.35s ease;
}
.work-row img:hover {
  filter: saturate(1);
}
.work-row img.land {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center 42%;
}
.work-row img.port {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 38%;
}
.work-caption {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.work-caption {
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 1rem;
  font-weight: 300;
}
.about-photo {
  width: 100%;
  max-width: 720px;
  display: block;
  margin: 0 auto 1.2rem;
  border-radius: 0;
}
.about-photo-caption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: -1.4rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
  .work-row { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .work-row img.land { grid-column: 1 / -1; aspect-ratio: 3 / 2; }
  .work-row img.port { aspect-ratio: 3 / 4; }
  .hero { padding: 4rem 0 3.5rem; }
  nav ul { gap: 1.1rem; font-size: 0.88rem; }
  .btn-secondary { margin-left: 0; margin-top: 0.8rem; display: inline-block; }
  .nav-wrap { flex-direction: column; gap: 0.9rem; }
  section { padding: 3.8rem 0; }
}


.signature {
  margin-top: 2.4rem;
  font-family: 'Allura', cursive;
  font-style: normal;
  font-size: 2.8rem;
  color: var(--deep-sage);
  line-height: 1.15;
}
.signature .sig-line {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--taupe);
  margin-bottom: 0.2rem;
}
