/* === FLORETIQUE GLOBAL STYLES === */

:root {
  --cream: #f7f3ec;
  --sage: #7a9e7e;
  --sage-dark: #5b7a5f;
  --sage-light: #c5d9c7;
  --earth: #8b6f47;
  --earth-light: #c9a97a;
  --dark: #1e1e1a;
  --mid: #4a4a42;
  --muted: #8a8a7a;
  --white: #ffffff;
  --border: #ddd8ce;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;

  --radius: 4px;
  --shadow: 0 2px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);

  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
}

h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.25rem; }

em { font-style: italic; color: var(--sage-dark); }

.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 0.75rem;
}

/* === LAYOUT === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.section-header p {
  margin-top: 1rem;
  color: var(--mid);
  font-size: 1.05rem;
}

.section-header.light h2,
.section-header.light p { color: var(--white); }
.section-header.light .label { color: var(--sage-light); }

.section-footer {
  text-align: center;
  margin-top: 3rem;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1.5px solid transparent;
}

.btn-primary {
  background: var(--sage-dark);
  color: var(--white);
  border-color: var(--sage-dark);
}
.btn-primary:hover {
  background: var(--dark);
  border-color: var(--dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}

/* === LOGO IMAGES === */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.nav-logo-img {
  height: 26px !important;
  width: auto !important;
  max-height: 26px !important;
  display: block;
  filter: invert(1) brightness(10);
  transition: filter 0.35s;
}

.nav.scrolled .nav-logo-img {
  filter: none;
}

.nav-logo-light { display: none !important; }
.nav-logo-dark  { display: none !important; }

.footer-logo-img {
  height: 26px !important;
  width: auto !important;
  max-height: 26px !important;
  display: block;
  margin-bottom: 1rem;
  filter: invert(1) brightness(10);
  opacity: 0.85;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  transition: background 0.35s ease, box-shadow 0.35s ease;
  overflow: visible;
}

.nav.scrolled {
  background: rgba(247,243,236,0.97);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
  backdrop-filter: blur(10px);
}


.nav-links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav.scrolled .nav-links a { color: var(--mid); }
.nav.scrolled .nav-links a:hover,
.nav.scrolled .nav-links a.active { color: var(--sage-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

.nav.scrolled .nav-toggle span { background: var(--dark); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 12s ease-out both;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,30,26,0.72) 0%, rgba(30,30,26,0.35) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-h) + 3rem) 2.5rem 5rem;
  max-width: 780px;
  animation: fadeUp 1s 0.3s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 1.2rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero p {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  animation: fadeUp 1s 0.8s both;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.3);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
}

/* === FEATURES === */
.why-section { background: var(--cream); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
}

.feature-card {
  background: var(--cream);
  padding: 2.5rem;
  transition: background 0.25s;
}

.feature-card:hover { background: var(--white); }

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.65;
}

/* === BLOG CARDS === */
.blog-section { background: var(--white); }

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

.article-card {
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--border);
  background: var(--cream);
  transition: transform 0.25s, box-shadow 0.25s;
}

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

.article-img-link {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  display: block;
}

.article-img-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card:hover .article-img-link img { transform: scale(1.05); }

.article-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--sage-dark);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
}

.article-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.6rem;
}

.article-body h3 {
  font-size: 1.2rem;
  line-height: 1.3;
}

.article-body h3 a:hover { color: var(--sage-dark); }

.article-body p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.6;
  flex: 1;
}

.article-meta {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.read-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--sage-dark);
  margin-top: 0.5rem;
}

.read-link:hover { color: var(--dark); }

/* === TIPS === */
.tips-section {
  background: var(--dark);
}

.tips-section .section-header h2,
.tips-section .section-header p { color: var(--cream); }
.tips-section .section-header .label { color: var(--sage-light); }

.tips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
}

.tip-card {
  padding: 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background 0.25s;
}

.tip-card:last-child { border-right: none; }
.tip-card:hover { background: rgba(255,255,255,0.04); }

.tip-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--sage-dark);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.6;
}

.tip-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.tip-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* === GALLERY === */
.gallery-section { background: var(--cream); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 6px;
}

.gallery-item {
  display: block;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* remove old span rules */
.gallery-item.tall { grid-row: unset; }
.gallery-item.wide { grid-column: unset; }

.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(30,30,26,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-hover { opacity: 1; }

/* === NEWSLETTER === */
.newsletter-section {
  background: var(--sage-dark);
  padding: 5rem 0;
}

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

.newsletter-text .label { color: var(--sage-light); }
.newsletter-text h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.5rem); }
.newsletter-text p { color: rgba(255,255,255,0.75); margin-top: 0.75rem; font-size: 0.95rem; }

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-form input {
  padding: 0.9rem 1.25rem;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form input:focus { border-color: rgba(255,255,255,0.6); }

.newsletter-form .btn-primary {
  background: var(--white);
  color: var(--sage-dark);
  border-color: var(--white);
}

.newsletter-form .btn-primary:hover {
  background: var(--cream);
  border-color: var(--cream);
}

.newsletter-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

.newsletter-note a { text-decoration: underline; color: inherit; }

/* === ABOUT SNIPPET === */
.about-snippet { background: var(--white); }

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

.about-img {
  position: relative;
  overflow: hidden;
}

.about-img::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1.5px solid var(--sage-light);
  z-index: 0;
  pointer-events: none;
}

.about-img img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { color: var(--mid); line-height: 1.75; margin-bottom: 1.5rem; }

.about-list {
  margin-bottom: 2rem;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--mid);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}

.about-list li::before {
  content: '✓';
  color: var(--sage-dark);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* === FOOTER === */
.footer {
  background: var(--dark);
  padding: 5rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.25rem;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-contact-list span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-contact-list a:hover { color: var(--sage-light); }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--sage-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.25);
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(255,255,255,0.55); }

/* === PAGE HERO (inner pages) === */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 2.5rem 4rem;
  background: linear-gradient(160deg, #2a3a2a 0%, #3b4a2f 100%);
  text-align: center;
}

.page-hero .label { color: var(--sage-light); }
.page-hero h1 { color: var(--white); font-size: clamp(2.2rem, 5vw, 4rem); }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 1rem auto 0; font-size: 1.05rem; }

/* === BLOG PAGE === */
.blog-hero {
  background: linear-gradient(160deg, #2a3a2a 0%, #3b4a2f 100%);
}

.blog-filter {
  padding: 2.5rem 0 0;
  background: var(--white);
  border-bottom: 1.5px solid var(--border);
}

.blog-filter-inner {
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
  padding-bottom: 0;
}

.filter-btn {
  flex-shrink: 0;
  padding: 0.6rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  color: var(--muted);
  transition: all 0.2s;
  text-transform: uppercase;
}

.filter-btn.active, .filter-btn:hover {
  color: var(--sage-dark);
  border-bottom-color: var(--sage-dark);
}

.blog-main { background: var(--white); padding: 4rem 0 6rem; }

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

/* === ARTICLE SINGLE PAGE === */
.article-hero {
  padding: calc(var(--nav-h) + 3rem) 2.5rem 3rem;
  background: linear-gradient(160deg, #2a3a2a 0%, #3b4a2f 100%);
  text-align: center;
}

.article-hero .label { color: var(--sage-light); }
.article-hero h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  max-width: 800px;
  margin: 0.75rem auto;
}

.article-meta-bar {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin-top: 0.75rem;
}

.article-content {
  max-width: 740px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.article-feature-img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  margin-bottom: 3rem;
  border-radius: 2px;
}

.article-content h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 0.75rem;
  color: var(--dark);
}

.article-content p {
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
}

.article-content ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.article-content ul li {
  color: var(--mid);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.4rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 2rem;
}

.back-link:hover { color: var(--dark); }

/* === ABOUT PAGE === */
.about-page-intro {
  background: var(--white);
  padding: 6rem 0;
}

.about-page-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-page-text h2 { margin-bottom: 1.25rem; }
.about-page-text p { color: var(--mid); line-height: 1.8; margin-bottom: 1.25rem; font-size: 1.02rem; }

.team-section { background: var(--cream); padding: 6rem 0; }

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

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

.team-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--sage-light);
}

.team-card h3 { font-size: 1.3rem; margin-bottom: 0.25rem; }
.team-card .role { font-size: 0.78rem; color: var(--sage-dark); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; display: block; }
.team-card p { font-size: 0.88rem; color: var(--mid); line-height: 1.65; }

.values-section { background: var(--dark); padding: 6rem 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}

.value-card {
  background: var(--dark);
  padding: 2.5rem;
}

.value-card .icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h3 { color: var(--cream); font-size: 1.3rem; margin-bottom: 0.75rem; }
.value-card p { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.65; }

/* === GALLERY PAGE === */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 4rem 0 6rem;
}

.gallery-page-item {
  display: block;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.gallery-page-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-page-item .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: var(--white);
  padding: 2rem 1.25rem 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.gallery-page-item:hover .gallery-caption { transform: none; }

/* === CONTACT PAGE === */
.contact-section { background: var(--white); padding: 6rem 0; }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
}

.contact-info h2 { margin-bottom: 1.25rem; }
.contact-info p { color: var(--mid); line-height: 1.75; margin-bottom: 2rem; font-size: 0.98rem; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.contact-item-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-item-text h5 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.contact-item-text a,
.contact-item-text span {
  font-size: 0.95rem;
  color: var(--dark);
}

.contact-item-text a:hover { color: var(--sage-dark); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--dark);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

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

.form-group textarea { min-height: 140px; }

/* === PRIVACY PAGE === */
.privacy-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.privacy-content h2 {
  font-size: 1.6rem;
  margin: 2.5rem 0 0.75rem;
  color: var(--dark);
}

.privacy-content p {
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 0.98rem;
}

.privacy-last-updated {
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 2.5rem;
}

/* === SUCCESS MESSAGE === */
.success-msg {
  display: none;
  background: var(--sage-light);
  color: var(--sage-dark);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .tips-grid { grid-template-columns: repeat(2, 1fr); }
  .tips-section .tip-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(247,243,236,0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 1.25rem;
    box-shadow: var(--shadow-lg);
  }

  .nav-links.open { display: flex; }
  .nav-links a { color: var(--dark); font-size: 1rem; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: fit-content; }

  .features-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }

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

  .about-inner,
  .about-page-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img { display: none; }

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

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

  .gallery-grid { grid-template-rows: auto; grid-template-columns: repeat(2, 1fr); }

  .gallery-page-grid { grid-template-columns: 1fr 1fr; }

  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

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

@media (max-width: 480px) {
  .gallery-page-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
