/* ===== Tiffinerary Travels LLC ===== */
:root {
  --blue: #1a6ab8;        /* logo royal blue */
  --blue-dark: #114d89;
  --blue-deep: #0c3a68;
  --green: #219653;       /* logo green */
  --orange: #f7941d;      /* logo orange */
  --orange-soft: #fbb45c;
  --cream: #fdf9f2;
  --ink: #22303e;
  --muted: #5b6a78;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(12, 58, 104, 0.12);
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 { font-family: "Playfair Display", Georgia, serif; line-height: 1.15; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 0.6rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(247, 148, 29, 0.35);
}
.btn-primary:hover { background: #e8860f; }
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }
.btn-small {
  padding: 0.5rem 1.2rem;
  background: var(--orange);
  color: var(--white) !important;
  font-size: 0.85rem;
}
.btn-wide { width: 100%; border: none; }

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(12, 58, 104, 0.08);
}
.nav-inner {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 0.65rem; }
.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(12, 58, 104, 0.2);
}
.brand-logo-lg { width: 74px; height: 74px; margin: 0 auto; }
.brand-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--blue);
}
.brand-name em { font-style: normal; color: var(--green); }
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a { font-weight: 500; font-size: 0.95rem; color: var(--ink); }
.nav-links a:hover { color: var(--blue); }
.nav-toggle { display: none; background: none; border: none; }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-deep);
  margin: 5px 0;
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(247, 148, 29, 0.25), transparent 50%),
    radial-gradient(ellipse at 85% 15%, rgba(33, 150, 83, 0.28), transparent 45%),
    linear-gradient(155deg, var(--blue) 0%, var(--blue-dark) 55%, var(--blue-deep) 100%);
  color: var(--white);
  padding: 7rem 1.5rem 9rem;
  text-align: center;
  overflow: hidden;
}
.hero-content { max-width: 820px; margin: 0 auto; position: relative; z-index: 2; }
.hero .eyebrow { color: var(--orange-soft); }
.hero h1 { font-size: clamp(2.3rem, 5.5vw, 3.9rem); font-weight: 700; margin-bottom: 1.4rem; }
.hero .accent { color: var(--orange-soft); font-style: italic; }
.hero-sub {
  font-size: 1.12rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin: 0 auto 2.2rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; }
.hero-wave svg { width: 100%; height: 90px; }

.hero-compact { padding: 5rem 1.5rem 7rem; }

/* ===== Trust bar ===== */
.trustbar {
  max-width: 1000px;
  margin: -3.2rem auto 0;
  position: relative;
  z-index: 3;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 1.6rem 1rem;
  text-align: center;
}
.trust-item strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.9rem;
  color: var(--blue);
}
.trust-item span { font-size: 0.85rem; color: var(--muted); }

/* ===== Sections ===== */
.section { padding: 5.5rem 1.5rem; max-width: 1150px; margin: 0 auto; }
.section-alt {
  max-width: none;
  background: linear-gradient(180deg, #eef5ee, #e6f0e9);
}
.section-alt > * { max-width: 1150px; margin-left: auto; margin-right: auto; }
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); color: var(--blue-deep); }
.section-sub { color: var(--muted); max-width: 560px; margin: 0.8rem auto 0; }

/* ===== Destinations ===== */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
}
.dest-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.dest-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(12, 58, 104, 0.18); }
.dest-photo {
  height: 200px;
  background-image: var(--card-img);
  background-size: cover;
  background-position: center;
}
.dest-santorini { background-image: url("https://images.unsplash.com/photo-1570077188670-e3a8d69ac5ff?auto=format&fit=crop&w=900&q=60"), var(--card-img); }
.dest-bali { background-image: url("https://images.unsplash.com/photo-1537996194471-e657df975ab4?auto=format&fit=crop&w=900&q=60"), var(--card-img); }
.dest-italy { background-image: url("https://images.unsplash.com/photo-1516483638261-f4dbaf036963?auto=format&fit=crop&w=900&q=60"), var(--card-img); }
.dest-maldives { background-image: url("https://images.unsplash.com/photo-1514282401047-d79a71a590e8?auto=format&fit=crop&w=900&q=60"), var(--card-img); }
.dest-morocco { background-image: url("https://images.unsplash.com/photo-1539020140153-e479b8c22e70?auto=format&fit=crop&w=900&q=60"), var(--card-img); }
.dest-japan { background-image: url("https://images.unsplash.com/photo-1493976040374-85c8e12f0c0e?auto=format&fit=crop&w=900&q=60"), var(--card-img); }
.dest-info { padding: 1.4rem 1.5rem 1.6rem; }
.dest-info h3 { font-size: 1.3rem; color: var(--blue-deep); margin-bottom: 0.4rem; }
.dest-info p { font-size: 0.95rem; color: var(--muted); margin-bottom: 0.9rem; }
.dest-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--green);
  background: rgba(33, 150, 83, 0.12);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
}

/* ===== Cruises ===== */
.cruise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
  margin-bottom: 3rem;
}
.cruise-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cruise-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(12, 58, 104, 0.18); }
.cruise-photo {
  height: 210px;
  background-size: cover;
  background-position: center;
}
.cruise-family { background-image: url("https://images.unsplash.com/photo-1548574505-5e239809ee19?auto=format&fit=crop&w=900&q=60"), linear-gradient(160deg, #1a6ab8, #6fc7dd); }
.cruise-luxury { background-image: url("https://images.unsplash.com/photo-1559599746-8823b38544c6?auto=format&fit=crop&w=900&q=60"), linear-gradient(160deg, #0c3a68, #1a6ab8); }
.cruise-group { background-image: url("https://images.unsplash.com/photo-1545579133-99bb5ab189bd?auto=format&fit=crop&w=900&q=60"), linear-gradient(160deg, #f7941d, #fbb45c); }
.cruise-info { padding: 1.4rem 1.5rem 1.6rem; }
.cruise-info h3 { font-size: 1.3rem; color: var(--blue-deep); margin-bottom: 0.4rem; }
.cruise-info p { font-size: 0.95rem; color: var(--muted); margin-bottom: 0.9rem; }
.cruise-lines {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.4rem 2rem;
}
.cruise-lines-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  color: var(--blue-deep);
  margin-bottom: 1.4rem;
}
.cruise-lines-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 1.8rem;
}
.cruise-lines-list li {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--blue);
  background: rgba(26, 106, 184, 0.08);
  border: 1px solid rgba(26, 106, 184, 0.18);
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
}

/* ===== Services ===== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}
.svc-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: 0 6px 20px rgba(12, 58, 104, 0.07);
  border-top: 4px solid var(--orange);
  transition: transform 0.25s ease;
}
.svc-card:hover { transform: translateY(-5px); }
.svc-card:nth-child(2n) { border-top-color: var(--green); }
.svc-card:nth-child(3n) { border-top-color: var(--blue); }
.svc-icon { font-size: 2.2rem; margin-bottom: 0.8rem; }
.svc-card h3 { font-size: 1.2rem; color: var(--blue-deep); margin-bottom: 0.5rem; }
.svc-card p { font-size: 0.93rem; color: var(--muted); }

/* ===== About ===== */
.about-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}
.about-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--blue-deep); margin-bottom: 1.2rem; }
.about-text p { color: var(--muted); margin-bottom: 1.1rem; }
.about-text .btn { margin-top: 0.6rem; }
.about-card {
  background: linear-gradient(150deg, var(--blue), var(--blue-deep));
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.4rem 2.2rem;
  box-shadow: var(--shadow);
}
.about-card blockquote {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}
.about-card cite { font-style: normal; font-size: 0.9rem; color: var(--orange-soft); }
.about-card-link {
  display: inline-block;
  margin-top: 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid var(--orange-soft);
}
.about-card-link:hover { color: var(--orange-soft); }

/* ===== Moments ===== */
.moments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
  margin-bottom: 2.6rem;
}
.moment {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}
.moment img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.moment:hover img { transform: scale(1.04); }
.moment figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2rem 1.2rem 0.9rem;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  background: linear-gradient(transparent, rgba(12, 58, 104, 0.85));
}
.tiktok-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem;
}
.tiktok-row .tiktok-embed { margin: 0 !important; }
.moments-follow { text-align: center; margin-top: 2.2rem; }

/* ===== Contact ===== */
.section-contact { padding-bottom: 6rem; }
.contact-wrap {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-deep);
}
.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid #dde5ec;
  border-radius: 10px;
  background: #fbfcfd;
  transition: border-color 0.2s ease;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--blue); }
.planning-card { text-align: center; padding: 2.8rem 2.4rem; gap: 0; }
.planning-icon { font-size: 2.6rem; margin-bottom: 0.6rem; }
.planning-card h3 {
  font-size: 1.45rem;
  color: var(--blue-deep);
  margin-bottom: 0.7rem;
}
.planning-card p { color: var(--muted); font-size: 0.97rem; max-width: 460px; margin: 0 auto 1.5rem; }
.planning-alt { margin: 1.2rem auto 0 !important; font-size: 0.85rem !important; }
.planning-alt a { color: var(--blue); font-weight: 600; }
.contact-side {
  background: linear-gradient(150deg, #fff7ec, #fdefdb);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  border: 1px solid rgba(247, 148, 29, 0.25);
}
.contact-side h3 { color: var(--blue-deep); margin-bottom: 0.9rem; font-size: 1.25rem; }
.contact-side p { font-size: 0.93rem; margin-bottom: 0.55rem; color: var(--ink); }
.contact-side a { color: var(--blue); font-weight: 500; }
.contact-note { margin-top: 1rem; color: var(--muted) !important; font-style: italic; }

/* ===== Reviews page ===== */
.review-summary { grid-template-columns: repeat(3, 1fr); align-items: center; }
.btn-review { white-space: nowrap; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.8rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.9rem 1.8rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--orange);
  display: flex;
  flex-direction: column;
}
.review-stars { color: var(--orange); font-size: 1.1rem; letter-spacing: 0.2em; margin-bottom: 0.8rem; }
.review-text { font-size: 0.96rem; color: var(--ink); flex: 1; }
.review-meta {
  margin-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}
.review-name { font-weight: 600; color: var(--blue-deep); }
.review-source { font-size: 0.8rem; color: var(--muted); }
.review-cta { text-align: center; margin-top: 3.5rem; }
.review-cta h2 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--blue-deep); margin-bottom: 1.2rem; }
.nav-current { color: var(--blue) !important; font-weight: 600 !important; }
@media (max-width: 680px) {
  .review-summary { grid-template-columns: 1fr; gap: 1rem; }
}

/* ===== Social links ===== */
.social-row { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  transition: transform 0.2s ease, background 0.2s ease;
}
.social-link:hover { transform: translateY(-3px); background: var(--orange); }
.contact-side .social-link { color: var(--white); }
.social-link svg { width: 20px; height: 20px; }
.social-row-footer { justify-content: center; margin-top: 0.4rem; }
.social-row-footer .social-link { background: rgba(255, 255, 255, 0.14); }
.social-row-footer .social-link:hover { background: var(--orange); }

/* ===== Footer ===== */
.footer {
  background: var(--blue-deep);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding: 3rem 1.5rem 2.2rem;
}
.footer-inner { display: flex; flex-direction: column; gap: 0.6rem; align-items: center; }
.footer-fine { font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); margin-top: 0.5rem; }

/* ===== Scroll reveal ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===== Mobile ===== */
@media (max-width: 820px) {
  .about-wrap, .contact-wrap { grid-template-columns: 1fr; }
  .trustbar { grid-template-columns: repeat(2, 1fr); gap: 1.2rem 0; margin-left: 1rem; margin-right: 1rem; }
}
@media (max-width: 680px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.2rem 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(12, 58, 104, 0.1);
    box-shadow: 0 12px 24px rgba(12, 58, 104, 0.12);
  }
  .nav-links.open { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 5rem 1.25rem 7rem; }
}
