/* ── EDITORIAL template ───────────────────────────────────────
   Magazine-style grid, mixed type sizes, big imagery, story-
   driven. Designed for boutique hotels, restaurants, wellness
   studios, photographers, lifestyle brands.
   ─────────────────────────────────────────────────────────── */

[data-template="editorial"] {
  --section-pad-y: clamp(72px, 10vw, 140px);
  --hero-pad-y:    clamp(60px, 9vw, 120px);
  --radius-card:   2px;
  --radius-btn:    var(--btn-radius, 0px);
  --rule-color:    var(--color-text, #181410);
  --paper:         var(--color-bg, #fbf8f3);
}

[data-template="editorial"] body,
[data-template="editorial"] {
  font-family: var(--font-body, 'Source Sans 3', system-ui, sans-serif);
  background: var(--paper);
  color: var(--color-text);
}

[data-template="editorial"] h1,
[data-template="editorial"] h2,
[data-template="editorial"] h3 {
  font-family: var(--font-display, 'DM Serif Display', 'Playfair Display', Georgia, serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

/* ── Nav ─────────────────────────────────────────────── */
[data-template="editorial"] .site-nav { background: var(--paper); border-bottom: 1px solid var(--rule-color); }
[data-template="editorial"] .nav-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--color-text); }
[data-template="editorial"] .nav-office { font-size: .78rem; font-style: italic; color: var(--color-text-light); }
[data-template="editorial"] .nav-toggle { color: var(--color-text); border-color: var(--rule-color); }
[data-template="editorial"] .nav-links a { font-size: .82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-text); font-weight: 500; }
[data-template="editorial"] .nav-links a:hover,
[data-template="editorial"] .nav-links a.active { color: var(--color-primary); }
[data-template="editorial"] .nav-links a.nav-cta { background: var(--color-text); color: var(--paper); padding: 8px 18px; }

/* ── Hero — magazine cover ───────────────────────────── */
[data-template="editorial"] .hero-editorial {
  min-height: auto;
  padding: calc(var(--nav-height, 68px) + var(--hero-pad-y)) 0 var(--hero-pad-y);
  background: var(--paper);
}
[data-template="editorial"] .ed-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule-color);
  margin-bottom: clamp(40px, 5vw, 64px);
  font-size: .82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-light);
}
[data-template="editorial"] .ed-issue { font-weight: 600; color: var(--color-text); }
[data-template="editorial"] .ed-dot { opacity: 0.4; }
[data-template="editorial"] .ed-brand { font-style: italic; letter-spacing: 0.08em; }

[data-template="editorial"] .ed-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: 32px;
}
[data-template="editorial"] .ed-text { padding-bottom: clamp(16px, 3vw, 40px); }
[data-template="editorial"] .hero-eyebrow {
  display: block;
  font-size: .78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 18px;
}
[data-template="editorial"] .hero-headline {
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  margin: 0 0 28px;
}
[data-template="editorial"] .hero-sub {
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--color-text-light);
  font-style: italic;
  margin: 0;
  max-width: 520px;
  border-left: 2px solid var(--color-primary);
  padding-left: 18px;
}
[data-template="editorial"] .ed-visual {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--color-light);
}
[data-template="editorial"] .ed-visual .hero-img { width: 100%; height: 100%; object-fit: cover; }
[data-template="editorial"] .ed-visual .hero-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-display);
  font-size: 6rem;
}
[data-template="editorial"] .hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--rule-color);
  margin-top: 32px;
}
@media (max-width: 860px) {
  [data-template="editorial"] .ed-grid { grid-template-columns: 1fr; }
  [data-template="editorial"] .ed-visual { aspect-ratio: 16/10; }
}

/* ── Sections ────────────────────────────────────────── */
[data-template="editorial"] .section { padding: var(--section-pad-y) 0; }
[data-template="editorial"] .section-header {
  margin-bottom: clamp(48px, 6vw, 72px);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule-color);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: end;
}
[data-template="editorial"] .section-label {
  font-size: .8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-light);
  font-weight: 600;
}
[data-template="editorial"] .section-title {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  margin: 0;
  justify-self: end;
  text-align: right;
}
[data-template="editorial"] .section-sub {
  grid-column: 1 / -1;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-text-light);
  margin: 12px 0 0;
  line-height: 1.55;
  max-width: 640px;
}
[data-template="editorial"] .section-cta { text-align: center; margin-top: 48px; }

/* About */
[data-template="editorial"] .section-about .two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
[data-template="editorial"] .about-img,
[data-template="editorial"] .about-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: var(--color-light);
}
[data-template="editorial"] .about-placeholder {
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--color-primary);
}
[data-template="editorial"] .about-text { padding-top: 8px; }
[data-template="editorial"] .lead-text {
  font-size: 1.25rem;
  line-height: 1.65;
  margin: 0 0 28px;
  color: var(--color-text);
  font-family: var(--font-display);
  font-style: italic;
}
[data-template="editorial"] .lead-text::first-letter {
  font-size: 4rem;
  float: left;
  line-height: 1;
  padding: 4px 12px 0 0;
  color: var(--color-primary);
  font-style: normal;
}
[data-template="editorial"] .bullet-list { list-style: none; padding: 0; margin: 0 0 32px; columns: 2; column-gap: 32px; }
[data-template="editorial"] .bullet-list li { padding: 6px 0; font-size: .98rem; display: flex; gap: 10px; }
[data-template="editorial"] .check-icon { color: var(--color-primary); font-weight: 700; }
@media (max-width: 760px) {
  [data-template="editorial"] .section-about .two-col-grid { grid-template-columns: 1fr; }
  [data-template="editorial"] .bullet-list { columns: 1; }
}

/* Service cards */
[data-template="editorial"] .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule-color);
}
[data-template="editorial"] .service-card {
  padding: 36px 28px;
  border-right: 1px solid var(--rule-color);
  border-bottom: 1px solid var(--rule-color);
}
[data-template="editorial"] .service-icon { font-size: 1.5rem; color: var(--color-primary); margin-bottom: 14px; }
[data-template="editorial"] .service-card h3 { font-family: var(--font-display); font-size: 1.4rem; margin: 0 0 12px; }
[data-template="editorial"] .service-card p { font-size: 1rem; line-height: 1.6; color: var(--color-text-light); margin: 0; }

/* Testimonials */
[data-template="editorial"] .testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
}
[data-template="editorial"] .testimonial-card { padding-left: 24px; border-left: 1px solid var(--rule-color); }
[data-template="editorial"] .testimonial-stars { color: var(--color-primary); margin-bottom: 18px; font-size: .9rem; letter-spacing: 4px; }
[data-template="editorial"] .testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.4;
  font-style: italic;
  margin: 0 0 20px;
}
[data-template="editorial"] .testimonial-card cite { font-style: normal; font-size: .9rem; letter-spacing: 0.08em; text-transform: uppercase; }
[data-template="editorial"] .testimonial-card cite strong { display: block; font-weight: 600; }
[data-template="editorial"] .testimonial-card cite span { color: var(--color-text-light); text-transform: none; letter-spacing: 0; font-style: italic; }
@media (max-width: 760px) {
  [data-template="editorial"] .testimonial-grid { grid-template-columns: 1fr; }
}

/* Gallery */
[data-template="editorial"] .gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  grid-auto-flow: dense;
  gap: 12px;
}
[data-template="editorial"] .gallery-item { overflow: hidden; }
[data-template="editorial"] .gallery-item:nth-child(1) { grid-row: 1 / span 2; }
[data-template="editorial"] .gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
[data-template="editorial"] .gallery-item:hover img { transform: scale(1.04); }
@media (max-width: 760px) {
  [data-template="editorial"] .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  [data-template="editorial"] .gallery-item:nth-child(1) { grid-row: auto; grid-column: 1 / -1; }
  [data-template="editorial"] .gallery-item { aspect-ratio: 4/3; }
}

/* Team */
[data-template="editorial"] .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 36px; }
[data-template="editorial"] .team-card { text-align: left; }
[data-template="editorial"] .team-photo,
[data-template="editorial"] .team-placeholder {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; margin-bottom: 16px; display: block;
  background: var(--color-light);
}
[data-template="editorial"] .team-placeholder { display: grid; place-items: center; color: var(--color-primary); font-family: var(--font-display); font-size: 3rem; }
[data-template="editorial"] .team-card h3 { font-size: 1.3rem; margin: 0 0 4px; font-family: var(--font-display); }
[data-template="editorial"] .team-role { font-style: italic; color: var(--color-text-light); font-size: .9rem; margin: 0 0 8px; }
[data-template="editorial"] .team-bio { font-size: .92rem; color: var(--color-text-light); line-height: 1.6; }

/* Contact */
[data-template="editorial"] .contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  border-top: 1px solid var(--rule-color);
  padding-top: 48px;
}
[data-template="editorial"] .contact-list { list-style: none; padding: 0; margin: 24px 0; }
[data-template="editorial"] .contact-list li { padding: 14px 0; border-bottom: 1px solid var(--rule-color); display: flex; gap: 14px; align-items: center; font-size: 1.05rem; }
[data-template="editorial"] .contact-list a { color: var(--color-text); text-decoration: none; }
[data-template="editorial"] .ci { font-family: var(--font-display); color: var(--color-primary); }
[data-template="editorial"] .social-icons { display: flex; gap: 12px; margin-top: 20px; }
[data-template="editorial"] .social-icon {
  width: 38px; height: 38px;
  border: 1px solid var(--rule-color);
  color: var(--color-text);
  display: grid; place-items: center;
  text-decoration: none;
  font-family: var(--font-display);
}
[data-template="editorial"] .social-icon:hover { background: var(--color-text); color: var(--paper); }
[data-template="editorial"] .contact-action { display: flex; flex-direction: column; gap: 12px; }
@media (max-width: 760px) {
  [data-template="editorial"] .contact-grid { grid-template-columns: 1fr; }
}

/* Buttons */
[data-template="editorial"] .btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background .2s ease, color .2s ease;
}
[data-template="editorial"] .btn-lg { padding: 16px 36px; font-size: .92rem; }
[data-template="editorial"] .btn-block { width: 100%; }
[data-template="editorial"] .btn-primary { background: var(--color-text); color: var(--paper); border-color: var(--color-text); }
[data-template="editorial"] .btn-primary:hover { background: var(--color-primary); border-color: var(--color-primary); }
[data-template="editorial"] .btn-accent { background: var(--color-accent); color: var(--color-text); }
[data-template="editorial"] .btn-ghost { background: transparent; color: var(--color-text); border-color: var(--rule-color); }
[data-template="editorial"] .btn-ghost:hover { background: var(--color-text); color: var(--paper); }
[data-template="editorial"] .btn-outline-white { background: transparent; color: #fff; border-color: #fff; }
[data-template="editorial"] .btn-outline-white:hover { background: #fff; color: var(--color-text); }

/* Footer */
[data-template="editorial"] .site-footer { background: var(--paper); color: var(--color-text); border-top: 1px solid var(--rule-color); margin-top: 0; }
[data-template="editorial"] .footer-grid { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 32px; padding: 48px 0 28px; }
[data-template="editorial"] .footer-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; }
[data-template="editorial"] .footer-office { font-style: italic; color: var(--color-text-light); font-size: .85rem; }
[data-template="editorial"] .footer-social { display: flex; gap: 14px; margin-top: 14px; }
[data-template="editorial"] .footer-social a { color: var(--color-text-light); text-decoration: none; font-family: var(--font-display); }
[data-template="editorial"] .footer-nav { display: flex; flex-wrap: wrap; gap: 8px 28px; font-size: .8rem; letter-spacing: 0.16em; text-transform: uppercase; }
[data-template="editorial"] .footer-nav a { color: var(--color-text-light); text-decoration: none; font-weight: 500; }
[data-template="editorial"] .footer-nav a:hover { color: var(--color-primary); }
[data-template="editorial"] .footer-contact { text-align: right; }
[data-template="editorial"] .footer-phone { font-family: var(--font-display); font-size: 1.3rem; color: var(--color-text); text-decoration: none; }
[data-template="editorial"] .footer-email { color: var(--color-text-light); font-size: .82rem; text-decoration: none; font-style: italic; }
[data-template="editorial"] .footer-bottom { border-top: 1px solid var(--rule-color); padding: 16px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: .76rem; }
[data-template="editorial"] .footer-copy { color: var(--color-text-light); margin: 0; }
[data-template="editorial"] .footer-pitch { color: var(--color-primary); text-decoration: none; font-style: italic; opacity: 0.8; }
@media (max-width: 760px) {
  [data-template="editorial"] .footer-grid { grid-template-columns: 1fr; }
  [data-template="editorial"] .footer-contact { text-align: left; }
}
